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

16 lines
303 B
Bash

fetch $GREP_URL
cd "$SOURCES" && tar xf grep-$GREP_VERSION.tar.xz && cd grep-$GREP_VERSION
./configure \
--prefix=/usr \
--host=$TARGET \
--build=$(build-aux/config.guess) \
--disable-nls \
--silent \
--quiet
make && make DESTDIR="$SYSROOT" install
cd "$SOURCES" && rm -rf grep-$GREP_VERSION