core/unzip/PKGBUILD
2015-01-05 19:06:07 +01:00

56 lines
1.8 KiB
Bash

# $Id: PKGBUILD 70615 2010-02-27 15:46:11Z thayer $
# Maintainer: Thayer Williams <thayer@archlinux.org>
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
# Contributor: Robson Peixoto
pkgname=unzip
pkgver=6.0
pkgrel=7
pkgdesc="Unpacks .zip archives such as those made by PKZIP"
arch=('x86_64')
url="http://www.info-zip.org/"
license=('custom')
depends=('bzip2' 'bash')
source=('http://downloads.sourceforge.net/infozip/unzip60.tar.gz'
CVE-2014-8139-crc-overflow.patch
CVE-2014-8140-test-compr-eb.patch
CVE-2014-8141-getzip64data.patch)
md5sums=('62b490407489521db863b523a7f86375'
'86fdb01be92ca170fca89ed9e914a560'
'04ab8f66ee5d869fa59f0e4998893691'
'48937fae1fe333db571cae9d570952dd')
prepare(){
cd ${srcdir}/${pkgname}${pkgver/./}
# https://www.debian.org/security/2014/dsa-3113
patch -Np1 -i "${srcdir}"/CVE-2014-8139-crc-overflow.patch
patch -Np1 -i "${srcdir}"/CVE-2014-8140-test-compr-eb.patch
patch -Np1 -i "${srcdir}"/CVE-2014-8141-getzip64data.patch
}
build() {
cd ${srcdir}/${pkgname}${pkgver/./}
# set CFLAGS -- 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 -DNATIVE"
# make -- from Debian
make -f unix/Makefile LOCAL_UNZIP="$CFLAGS" prefix=/usr LF2="" \
D_USE_BZ2=-DUSE_BZIP2 L_BZ2=-lbz2 unzips || return 1
# install -- from Debian
make -f unix/Makefile prefix=${pkgdir}/usr INSTALL_PROGRAM="install" install || return 1
# install the license file
install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/unzip/LICENSE || return 1
# fix manpage location
mkdir -p ${pkgdir}/usr/share || return 1
mv ${pkgdir}/usr/man ${pkgdir}/usr/share/ || return 1
}