mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
19 lines
658 B
Bash
19 lines
658 B
Bash
# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
|
|
# Previous Contributor: arjan <arjan@archlinux.org>
|
|
# Previous Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
pkgname=ucl
|
|
pkgver=1.03
|
|
pkgrel=3.1
|
|
pkgdesc="Portable lossless data compression library written in ANSI C"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
url="http://www.oberhumer.com/opensource/ucl/"
|
|
options=(!libtool)
|
|
source=(http://www.oberhumer.com/opensource/$pkgname/download/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('852bd691d8abc75b52053465846fba34')
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|