Files
axe-os/stage/toolchain/findutils.bash
2026-03-25 16:26:52 +02:00

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