blob: 07c0aa997d78542229f64bc42de8ac03490b2a6a (
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
5 name=zip
6 version=2.32
7 release=1
8 source=(http://fresh.t-systems-sfr.com/unix/src/misc/zip232.tar.gz)
9
10 build() {
11 cd $name-$version
12 make -f unix/Makefile LOCAL_ZIP="$CFLAGS" prefix=/usr generic
13 make -f unix/Makefile INSTALL=install prefix=$PKG/usr install
14 ln -sf zip.1.gz $PKG/usr/man/man1/zipcloak.1.gz
15 ln -sf zip.1.gz $PKG/usr/man/man1/zipnote.1.gz
16 ln -sf zip.1.gz $PKG/usr/man/man1/zipsplit.1.gz
17 }
|