mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
22 lines
537 B
Bash
22 lines
537 B
Bash
# $Id: PKGBUILD 55991 2009-10-17 11:56:13Z andrea $
|
|
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
|
|
|
|
pkgname=lzop
|
|
pkgver=1.02rc1
|
|
pkgrel=4
|
|
pkgdesc="File compressor using lzo lib"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
url="http://www.lzop.org/"
|
|
depends=('lzo2')
|
|
source=(http://www.lzop.org/download/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('4b999030716b1353c3dac049b269df7a')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/share/man
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|