Date: Friday, July 11, 2014 @ 16:13:36 Author: arodseth Revision: 115458
Builds if applying gentoo patches Modified: ucl/trunk/PKGBUILD ----------+ PKGBUILD | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-07-11 13:34:11 UTC (rev 115457) +++ PKGBUILD 2014-07-11 14:13:36 UTC (rev 115458) @@ -1,27 +1,29 @@ # $Id$ -# Maintainer: Sergej Pupykin <[email protected]> +# Maintainer: Alexander Rødseth <[email protected]> +# Contributor: Sergej Pupykin <[email protected]> # Contributor: Geoffroy Carrier <[email protected]> -# Previous Contributor: arjan <[email protected]> -# Previous Contributor: Tom Newsom <[email protected]> +# Contributor: arjan <[email protected]> +# Contributor: Tom Newsom <[email protected]> pkgname=ucl pkgver=1.03 -pkgrel=6 -pkgdesc="Portable lossless data compression library written in ANSI C" -arch=('i686' 'x86_64') +pkgrel=7 +pkgdesc='Portable lossless compression library' +arch=('x86_64' 'i686') license=('GPL') -url="http://www.oberhumer.com/opensource/ucl/" +url='http://www.oberhumer.com/opensource/ucl/' source=("http://www.oberhumer.com/opensource/$pkgname/download/$pkgname-$pkgver.tar.gz") -md5sums=('852bd691d8abc75b52053465846fba34') +sha256sums=('b865299ffd45d73412293369c9754b07637680e5c826915f097577cd27350348') build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$pkgname-$pkgver" - ./configure --prefix=/usr + ./configure --prefix=/usr --enable-shared --disable-static make } package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir" install + make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install } + +# vim:set ts=2 sw=2 et:
