eth0s/toolchain/23-gzip
2020-06-12 16:42:33 +08:00

15 lines
303 B
Text
Executable file

name=gzip
version=1.10
source=(http://ftp.gnu.org/gnu/gzip/gzip-$version.tar.xz)
build() {
cd $name-$version
#fixes required by glibc-2.28
#sed -i 's/IO_ftrylockfile/IO_EOF_SEEN/' lib/*.c
#echo "#define _IO_IN_BACKUP 0x100" >> lib/stdio-impl.h
./configure --prefix=/tools
make
make install
}