# $Id$ # Maintainer: Gaetan Bisson # Contributor: dorphell pkgname=zip pkgver=3.0 _pkgver=${pkgver/./} pkgrel=4 pkgdesc='Compressor/archiver for creating and modifying zipfiles' url='http://www.info-zip.org/Zip.html' arch=('i686' 'x86_64') license=('custom') depends=('bzip2') source=("http://downloads.sourceforge.net/infozip/${pkgname}${_pkgver}.tar.gz") sha1sums=('c9f4099ecf2772b53c2dd4a8e508064ce015d182') options=('!makeflags') build() { cd "${srcdir}/${pkgname}${_pkgver}" make -f unix/Makefile prefix=/usr \ LOCAL_ZIP="$CFLAGS $CPPFLAGS $LDFLAGS" \ generic_gcc } package() { cd "${srcdir}/${pkgname}${_pkgver}" make -f unix/Makefile prefix="${pkgdir}"/usr \ MANDIR=${pkgdir}/usr/share/man/man1 \ install install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }