From 34ca87587a92fb43c6f9668f8f53d4fe40d56cde Mon Sep 17 00:00:00 2001 From: Neophytos Date: Fri, 14 Jun 2013 20:58:41 +0000 Subject: [PATCH] libzip rebuild with a fix --- libzip/PKGBUILD | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libzip/PKGBUILD b/libzip/PKGBUILD index 5274ead90..2cfe7d523 100644 --- a/libzip/PKGBUILD +++ b/libzip/PKGBUILD @@ -1,8 +1,9 @@ #maintainer: Neophytos Kolokotronis +#contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/libzip/ pkgname=libzip pkgver=0.11.1 -pkgrel=1 +pkgrel=2 pkgdesc="A C library for reading, creating, and modifying zip archives" url="http://www.nih.at/libzip/index.html" license=('GPL2') @@ -16,8 +17,8 @@ md5sums=('bf50518665f4ebcce623c7dcdc2f422d' build() { cd ${srcdir}/${pkgname}-${pkgver} - patch -p1 -i "${srcdir}/fix-headers.patch" + autoreconf -i ./configure --prefix=/usr make } @@ -25,4 +26,5 @@ build() { package() { cd ${srcdir}/${pkgname}-${pkgver} make DESTDIR=${pkgdir} install + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }