diff options
Diffstat (limited to 'core/lzo2/PKGBUILD')
-rw-r--r-- | core/lzo2/PKGBUILD | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/core/lzo2/PKGBUILD b/core/lzo2/PKGBUILD index 69da4de16..e163f4321 100644 --- a/core/lzo2/PKGBUILD +++ b/core/lzo2/PKGBUILD @@ -1,20 +1,26 @@ -# $Id: PKGBUILD 197831 2013-10-30 11:05:49Z allan $ +# $Id: PKGBUILD 215660 2014-06-30 06:39:24Z tpowa $ # Contributor: Low Kian Seong <fastmail_low@speedymail.org> # Maintainer: dorphell <dorphell@archlinux.org> pkgname=lzo2 -pkgver=2.06 -pkgrel=3 +pkgver=2.07 +pkgrel=2 pkgdesc="Portable lossless data compression library" arch=('i686' 'x86_64') url="http://www.oberhumer.com/opensource/lzo" license=('GPL') depends=('glibc') -source=(http://www.oberhumer.com/opensource/lzo/download/lzo-${pkgver}.tar.gz) -md5sums=('95380bd4081f85ef08c5209f4107e9f8') +source=(http://www.oberhumer.com/opensource/lzo/download/lzo-${pkgver}.tar.gz + configure-2.07.patch) +md5sums=('4011935e95171e78ad4894f7335c982a' + 'db3ead3fb5590275838d3080ea7342d1') -build() { +prepare() { cd "${srcdir}/lzo-${pkgver}" + patch -Np0 -i ${srcdir}/configure-2.07.patch +} +build() { + cd "${srcdir}/lzo-${pkgver}" ./configure --prefix=/usr --enable-shared make |