summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2014-10-01 20:09:54 (GMT)
committerBritney Fransen <brfransen@gmail.com>2014-10-01 20:09:54 (GMT)
commit928a56f0fbd6890b8f793eacc5498cf7e5f27324 (patch)
tree83df6cbdbf76829207d83a475cacadcbb6542b29
parentb46b91670e7637bdb1eaf89f70dfcbeb61e7100a (diff)
downloadlinhes_pkgbuild-928a56f0fbd6890b8f793eacc5498cf7e5f27324.zip
linhes_pkgbuild-928a56f0fbd6890b8f793eacc5498cf7e5f27324.tar.gz
linhes_pkgbuild-928a56f0fbd6890b8f793eacc5498cf7e5f27324.tar.bz2
lzo: replaces lzo2
-rw-r--r--abs/core/lzo/PKGBUILD (renamed from abs/core/lzo2/PKGBUILD)23
1 files changed, 15 insertions, 8 deletions
diff --git a/abs/core/lzo2/PKGBUILD b/abs/core/lzo/PKGBUILD
index dd0c5e6..3cbf9e7 100644
--- a/abs/core/lzo2/PKGBUILD
+++ b/abs/core/lzo/PKGBUILD
@@ -1,27 +1,34 @@
-# $Id: PKGBUILD 136471 2011-08-30 06:25:43Z tpowa $
+# $Id$
# Contributor: Low Kian Seong <fastmail_low@speedymail.org>
# Maintainer: dorphell <dorphell@archlinux.org>
-pkgname=lzo2
-pkgver=2.06
-pkgrel=1
+pkgname=lzo
+pkgver=2.08
+pkgrel=3
pkgdesc="Portable lossless data compression library"
arch=('i686' 'x86_64')
url="http://www.oberhumer.com/opensource/lzo"
license=('GPL')
depends=('glibc')
+provides=("lzo2=$pkgver")
+replaces=('lzo2')
+conflicts=('lzo2')
source=(http://www.oberhumer.com/opensource/lzo/download/lzo-${pkgver}.tar.gz)
-options=(!libtool)
-md5sums=('95380bd4081f85ef08c5209f4107e9f8')
+md5sums=('fcec64c26a0f4f4901468f360029678f')
build() {
cd "${srcdir}/lzo-${pkgver}"
-
./configure --prefix=/usr --enable-shared
make
# build minilzo
gcc $CFLAGS -fpic -Iinclude/lzo -o minilzo/minilzo.o -c minilzo/minilzo.c
- gcc -g -shared -o libminilzo.so.0 -Wl,-soname,libminilzo.so.0 minilzo/minilzo.o
+ gcc $LDFLAGS -shared -o libminilzo.so.0 -Wl,-soname,libminilzo.so.0 minilzo/minilzo.o
+}
+
+check() {
+ cd "${srcdir}/lzo-${pkgver}"
+ make test # Larger test
+ make check
}
package() {