PKGBUILDs/core/lzo2/PKGBUILD
2009-10-31 22:32:03 -05:00

23 lines
614 B
Bash

# Contributor: Low Kian Seong <fastmail_low@speedymail.org>
# Maintainer: dorphell <dorphell@archlinux.org>
pkgname=lzo2
pkgver=2.03
pkgrel=1
pkgdesc="Portable lossless data compression library written in ANSI C"
arch=(i686 x86_64 arm)
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
}