summaryrefslogtreecommitdiff
path: root/community/libnsgif/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-01 11:08:57 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-01 11:08:57 -0300
commit1200fd46a32625f2ac4b035653cb49c22cce6426 (patch)
tree0723ee124b40e6e95200ca002f9ae81361ab7919 /community/libnsgif/PKGBUILD
parent0d0d9e0930114504c15aa8174e2c7d1d2b7a6744 (diff)
parentfd115d7057eb8243df6edfaf1ed440d6f3e70692 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/iat/PKGBUILD community/libnsbmp/PKGBUILD community/libnsgif/PKGBUILD community/libopenraw/PKGBUILD community/netsurf/PKGBUILD core/bison/PKGBUILD core/perl/PKGBUILD extra/avahi/PKGBUILD extra/mutt/PKGBUILD extra/php/PKGBUILD
Diffstat (limited to 'community/libnsgif/PKGBUILD')
-rw-r--r--community/libnsgif/PKGBUILD26
1 files changed, 15 insertions, 11 deletions
diff --git a/community/libnsgif/PKGBUILD b/community/libnsgif/PKGBUILD
index ba8b0f7a2..fa6fcdc72 100644
--- a/community/libnsgif/PKGBUILD
+++ b/community/libnsgif/PKGBUILD
@@ -1,28 +1,32 @@
-# $Id: PKGBUILD 52357 2011-07-23 20:52:47Z ebelanger $
+# $Id: PKGBUILD 59664 2011-11-29 09:06:33Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Contributor: Paulo Matias <matiasΘarchlinux-br·org>
-# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
-
pkgname=libnsgif
pkgver=0.0.3
-pkgrel=1
+pkgrel=3
pkgdesc="Decoding library for the GIF image file format"
arch=('i686' 'x86_64' 'mips64el')
-url="http://www.netsurf-browser.org/projects/libnsgif"
+url="http://www.netsurf-browser.org/projects/libnsgif/"
license=('MIT')
depends=('glibc')
-source=("http://www.netsurf-browser.org/projects/releases/${pkgname}-${pkgver}-src.tar.gz")
+source=("http://www.netsurf-browser.org/projects/releases/$pkgname-$pkgver-src.tar.gz")
md5sums=('d4fa9679939e9b1b243799d6a0623cec')
build() {
- cd "${srcdir}"/${pkgname}-${pkgver}-src
+ cd "$srcdir/$pkgname-$pkgver-src"
+
CFLAGS="$CFLAGS -fno-strict-aliasing"
make PREFIX=/usr COMPONENT_TYPE="lib-shared"
make PREFIX=/usr COMPONENT_TYPE="lib-static"
}
package() {
- cd "${srcdir}"/${pkgname}-${pkgver}-src
- make install PREFIX=/usr DESTDIR="${pkgdir}" COMPONENT_TYPE="lib-shared"
- make install PREFIX=/usr DESTDIR="${pkgdir}" COMPONENT_TYPE="lib-static"
- install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
+ cd "$srcdir/$pkgname-$pkgver-src"
+
+ make install PREFIX=/usr DESTDIR="$pkgdir" COMPONENT_TYPE="lib-shared"
+ make install PREFIX=/usr DESTDIR="$pkgdir" COMPONENT_TYPE="lib-static"
+ install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}
+
+# vim:set ts=2 sw=2 et: