PKGBUILDs/core/lzo/PKGBUILD
2009-09-26 09:35:50 -05:00

21 lines
546 B
Bash

# Maintainer: Manuel Rotter <rotter.manuel@gmail.com>
pkgname=lzo
pkgver=2.02
pkgrel=1
pkgdesc="a portable lossless data compression library written in ANSI C"
arch=(arm)
url="http://www.oberhumer.com/opensource/lzo"
license=('GPL')
depends=('glibc')
source=(http://www.oberhumer.com/opensource/lzo/download/lzo-${pkgver}.tar.gz)
options=(!libtool)
md5sums=('6760e5819f4238328709bf93bf10071c')
build() {
cd ${startdir}/src/lzo-${pkgver}
./configure --prefix=/usr --enable-shared
make || return 1
make DESTDIR=${startdir}/pkg install
}