mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08: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=2
|
|
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
|
|
}
|