PKGBUILDs/core/lzo2/PKGBUILD

23 lines
614 B
Bash
Raw Normal View History

2009-10-10 02:17:35 +00:00
# Contributor: Low Kian Seong <fastmail_low@speedymail.org>
# Maintainer: dorphell <dorphell@archlinux.org>
2009-11-01 03:32:03 +00:00
2009-10-10 02:17:35 +00:00
pkgname=lzo2
pkgver=2.03
pkgrel=1
pkgdesc="Portable lossless data compression library written in ANSI C"
2009-11-01 03:32:03 +00:00
arch=(i686 x86_64 arm)
2009-10-10 02:17:35 +00:00
url="http://www.oberhumer.com/opensource/lzo"
license=('GPL')
groups=('base')
depends=('glibc')
source=(http://www.oberhumer.com/opensource/lzo/download/lzo-${pkgver}.tar.gz)
options=(!libtool)
md5sums=('0c3d078c2e8ea5a88971089a2f02a726')
build() {
cd ${srcdir}/lzo-${pkgver}
./configure --prefix=/usr --enable-shared
make || return 1
make DESTDIR=${pkgdir} install
}