blob: 6749d32e9c430cf43c6c79e3e9474e04cb143b03 (
plain)
1 # Description: Compression and file packaging/archive utility
2 # URL: http://infozip.sourceforge.net/Zip.html
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: bzip2
5
6 name=zip
7 version=3.0
8 release=2
9 source=(http://downloads.sourceforge.net/sourceforge/infozip/${name}${version//./}.tar.gz)
10
11 build() {
12 cd ${name}${version//./}
13 make -f unix/Makefile LOCAL_ZIP="$CFLAGS" prefix=/usr generic
14 make -f unix/Makefile INSTALL=install prefix=$PKG/usr MANDIR=$PKG/usr/share/man/man1 install
15 }
|