core/unzip/Pkgfile

19 lines
653 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Decompress utility for zipfiles
# URL: http://infozip.sourceforge.net/UnZip.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=unzip
2009-05-05 12:52:02 +02:00
version=6.0
release=3
source=(http://downloads.sourceforge.net/sourceforge/infozip/${name}${version//./}.tar.gz \
unzip-6.0-overflow.patch unzip-6.0-attribs-overflow.patch)
2006-02-23 16:26:10 +01:00
build() {
2009-05-05 12:52:02 +02:00
cd ${name}${version//./}
patch -p1 -i $SRC/unzip-6.0-overflow.patch
patch -p1 -i $SRC/unzip-6.0-attribs-overflow.patch
2012-01-06 15:33:13 +01:00
make -f unix/Makefile LOCAL_UNZIP="$CFLAGS" prefix=/usr linux_noasm
2006-02-23 16:26:10 +01:00
make -f unix/Makefile prefix=$PKG/usr install
ln -sf unzip $PKG/usr/bin/zipinfo
}