diff options
Diffstat (limited to 'community/libnsgif/PKGBUILD')
-rw-r--r-- | community/libnsgif/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/libnsgif/PKGBUILD b/community/libnsgif/PKGBUILD index 0fb40c823..8016b6b16 100644 --- a/community/libnsgif/PKGBUILD +++ b/community/libnsgif/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 89124 2013-04-26 23:34:05Z arodseth $ +# $Id: PKGBUILD 99628 2013-10-30 16:34:52Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> # Contributor: Paulo Matias <matiasΘarchlinux-br·org> pkgname=libnsgif pkgver=0.1.0 -pkgrel=1 +pkgrel=2 pkgdesc='Decoding library for the GIF image file format' arch=('x86_64' 'i686' 'mips64el') url='http://www.netsurf-browser.org/projects/libnsgif/' @@ -16,18 +16,18 @@ source=("http://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src. sha256sums=('e7dc7ee887fefc19e7c7985c5a2b057870e0fa3dd0dcfc1fdb4e98da1f36593c') build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$pkgname-$pkgver" CFLAGS="$CFLAGS -fno-strict-aliasing" make PREFIX=/usr COMPONENT_TYPE="lib-shared" - make PREFIX=/usr COMPONENT_TYPE="lib-static" + #make PREFIX=/usr COMPONENT_TYPE="lib-static" } package() { - cd "$srcdir/$pkgname-$pkgver" + cd "$pkgname-$pkgver" make install PREFIX=/usr DESTDIR="$pkgdir" COMPONENT_TYPE="lib-shared" - make install PREFIX=/usr DESTDIR="$pkgdir" COMPONENT_TYPE="lib-static" + #make install PREFIX=/usr DESTDIR="$pkgdir" COMPONENT_TYPE="lib-static" install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" } |