14 lines
249 B
Bash
14 lines
249 B
Bash
|
|
fetch $GZIP_URL
|
|
|
|
cd "$SOURCES" && tar xf gzip-$GZIP_VERSION.tar.xz && cd gzip-$GZIP_VERSION
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--host=$TARGET \
|
|
--silent \
|
|
--quiet
|
|
|
|
make && make DESTDIR="$SYSROOT" install
|
|
|
|
cd "$SOURCES" && rm -rf gzip-$GZIP_VERSION |