# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ # Maintainer: Dan McGee pkgname=unzip pkgver=6.0 pkgrel=1 pkgdesc="Unpacks .zip archives such as those made by PKZIP" arch=('i686' 'x86_64') url="http://www.info-zip.org/" license=('custom') depends=('glibc') source=(http://downloads.sourceforge.net/infozip/unzip60.tar.gz) md5sums=('62b490407489521db863b523a7f86375') build() { cd $startdir/src/$pkgname${pkgver/./} # From Debian export CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -DACORN_FTYPE_NFS \ -DWILD_STOP_AT_DIR -DLARGE_FILE_SUPPORT -DUNICODE_SUPPORT \ -DUNICODE_WCHAR -DUTF8_MAYBE_NATIVE -DNO_LCHMOD -DDATE_FORMAT=DF_YMD \ -DUSE_BZIP2" # From Debian make -f unix/Makefile LOCAL_UNZIP="$CFLAGS" prefix=/usr LF2="" \ D_USE_BZ2=-DUSE_BZIP2 L_BZ2=-lbz2 unzips make -f unix/Makefile prefix=$startdir/pkg/usr INSTALL_PROGRAM="install" \ install install -Dm644 LICENSE $startdir/pkg/usr/share/licenses/unzip/LICENSE }