17 lines
373 B
Bash
17 lines
373 B
Bash
|
|
fetch $FINDUTILS_URL
|
|
|
|
cd "$SOURCES" && tar xf findutils-$FINDUTILS_VERSION.tar.xz && cd findutils-$FINDUTILS_VERSION
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--localstatedir=/var/lib/locate \
|
|
--host=$TARGET \
|
|
--build=$(build-aux/config.guess) \
|
|
--disable-nls \
|
|
--silent \
|
|
--quiet
|
|
|
|
make && make DESTDIR="$SYSROOT" install
|
|
|
|
cd "$SOURCES" && rm -rf findutils-$FINDUTILS_VERSION |