2009-10-10 02:23:22 +00:00
|
|
|
# Maintainer: dorphell <dorphell@archlinux.org>
|
|
|
|
|
|
|
|
pkgname=zip
|
|
|
|
pkgver=3.0
|
|
|
|
pkgrel=1.1
|
|
|
|
pkgdesc="Creates PKZIP-compatible .zip files"
|
2009-10-11 04:11:32 +00:00
|
|
|
arch=('arm')
|
2009-10-10 02:23:22 +00:00
|
|
|
url="http://www.info-zip.org/pub/infozip/Zip.html"
|
|
|
|
license=('BSD')
|
|
|
|
depends=('glibc' 'bzip2')
|
|
|
|
makedepends=('unzip')
|
|
|
|
options=('!makeflags')
|
|
|
|
source=(ftp://ftp.info-zip.org/pub/infozip/src/zip30.zip)
|
|
|
|
md5sums=('e88492c8abd68fa9cfba72bc08757dba')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $startdir/src/${pkgname}30
|
|
|
|
make -f unix/Makefile LOCAL_ZIP="$CFLAGS" prefix=/usr generic_gcc || return 1
|
|
|
|
make -f unix/Makefile INSTALL=`which install` prefix=$startdir/pkg/usr MANDIR=$startdir/pkg/usr/share/man/man1 install
|
|
|
|
install -D -m644 LICENSE $startdir/pkg/usr/share/licenses/$pkgname/LICENSE.txt
|
|
|
|
}
|