mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
664 B
Bash
23 lines
664 B
Bash
|
# $Id: PKGBUILD 38423 2009-05-07 09:38:12Z allan $
|
||
|
# 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')
|
||
|
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
|
||
|
}
|