summaryrefslogtreecommitdiff
path: root/community/libparserutils
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-19 20:37:04 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-19 20:37:04 -0300
commita379247a5f187c1608664530e9ff85663eff3201 (patch)
tree3a49e87e7419c4aca35d1f4f2e591d12c3821c78 /community/libparserutils
parent1bf114d00280c9cfb2075d30830fdf86adb30951 (diff)
parent81ee1980feda43043eaebae2c596ae116a21f6e5 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/cuetools/PKGBUILD community/ekg2/PKGBUILD community/libcss/PKGBUILD community/libwapcaplet/PKGBUILD community/lxrandr/PKGBUILD community/menu-cache/PKGBUILD community/mumble/PKGBUILD community/ngircd/PKGBUILD community/oidentd/PKGBUILD community/openbox/PKGBUILD community/preload/PKGBUILD community/xdg-user-dirs/PKGBUILD extra/gdome2/PKGBUILD extra/libdiscid/PKGBUILD extra/pymad/PKGBUILD extra/qhull/PKGBUILD extra/speech-dispatcher/PKGBUILD multilib/lib32-gmp/PKGBUILD testing/xorg-server/PKGBUILD
Diffstat (limited to 'community/libparserutils')
-rw-r--r--community/libparserutils/PKGBUILD22
1 files changed, 12 insertions, 10 deletions
diff --git a/community/libparserutils/PKGBUILD b/community/libparserutils/PKGBUILD
index 470ddbe75..d6429d066 100644
--- a/community/libparserutils/PKGBUILD
+++ b/community/libparserutils/PKGBUILD
@@ -1,20 +1,22 @@
-# $Id: PKGBUILD 56213 2011-10-03 13:57:53Z arodseth $
-# Maintainer: Brad Fanella <bradfanella@archlinux.us>
+# $Id: PKGBUILD 64884 2012-02-18 19:31:38Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Brad Fanella <bradfanella@archlinux.us>
# Contributor: Paulo Matias <matiasΘarchlinux-br·org>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
+
pkgname=libparserutils
pkgver=0.1.1
-pkgrel=1
+pkgrel=2
pkgdesc="Library for building efficient parsers"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.netsurf-browser.org/projects/libparserutils"
license=('MIT')
-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")
depends=('glibc')
-md5sums=('4f228516863de33f33f7f4258315867e')
+sha256sums=('8b79ba58d6fa63fa9c74b71482d93f2c5b2c22badac77265f3cc47f3f603f87d')
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd "$srcdir/$pkgname-$pkgver"
sed 's:-Wall::' -i Makefile
make PREFIX=/usr COMPONENT_TYPE="lib-shared"
@@ -22,11 +24,11 @@ build() {
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd "$srcdir/$pkgname-$pkgver"
- 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"
+ 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: