mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
546 B
Bash
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
|
||
|
}
|