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