18 lines
599 B
Plaintext
18 lines
599 B
Plaintext
# Description: Compression and file packaging/archive utility
|
|
# URL: http://infozip.sourceforge.net/Zip.html
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
name=zip
|
|
version=2.32
|
|
release=1
|
|
source=(http://fresh.t-systems-sfr.com/unix/src/misc/zip232.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
make -f unix/Makefile LOCAL_ZIP="$CFLAGS" prefix=/usr generic
|
|
make -f unix/Makefile INSTALL=install prefix=$PKG/usr install
|
|
ln -sf zip.1.gz $PKG/usr/man/man1/zipcloak.1.gz
|
|
ln -sf zip.1.gz $PKG/usr/man/man1/zipnote.1.gz
|
|
ln -sf zip.1.gz $PKG/usr/man/man1/zipsplit.1.gz
|
|
}
|