mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 11:51:38 +01:00
32 lines
946 B
Plaintext
32 lines
946 B
Plaintext
# Maintainer: Carlo Landmeter <clandmeter@gmail.com>
|
|
pkgname=zip
|
|
pkgver=3.0
|
|
pkgrel=3
|
|
pkgdesc="Creates PKZIP-compatible .zip files"
|
|
url="http://www.info-zip.org/pub/infozip/Zip.html"
|
|
arch="all"
|
|
license="AS IS"
|
|
depends=""
|
|
makedepends=""
|
|
source="ftp://ftp.info-${pkgname}.org/pub/info${pkgname}/src/${pkgname}30.zip
|
|
10-zip-3.0-build.patch
|
|
20-zip-3.0-exec-stack.patch
|
|
30-zip-3.0-pic.patch"
|
|
subpackages="$pkgname-doc"
|
|
|
|
build ()
|
|
{
|
|
cd "${srcdir}/${pkgname}30"
|
|
for i in ../*.patch; do
|
|
msg "Applying $i"
|
|
patch -p0 < $i || return 1
|
|
done
|
|
make -f unix/Makefile LOCAL_ZIP="${CFLAGS} ${CPPFLAGS}" prefix=/usr generic || return 1
|
|
make -f unix/Makefile prefix=${pkgdir}/usr MANDIR=${pkgdir}/usr/share/man install
|
|
}
|
|
|
|
md5sums="e88492c8abd68fa9cfba72bc08757dba zip30.zip
|
|
c86c527b6ad487aef02954bb1607ff07 10-zip-3.0-build.patch
|
|
f6490facf87e501b5d0c7095949515a7 20-zip-3.0-exec-stack.patch
|
|
f0b90de421d370f1b40b0f681d3829d8 30-zip-3.0-pic.patch"
|