summaryrefslogtreecommitdiff
path: root/extra/liblrdf/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-04-30 22:33:37 +0000
committerroot <root@rshg047.dnsready.net>2011-04-30 22:33:37 +0000
commitc173ac862828a54925737fc1d90ede1dd09a312c (patch)
tree63d6b46455a4abdaf96aef59bbaa4406c6fe04f8 /extra/liblrdf/PKGBUILD
parent693b5793b8c615601135bc04216a2ca0966087c5 (diff)
Sat Apr 30 22:33:37 UTC 2011
Diffstat (limited to 'extra/liblrdf/PKGBUILD')
-rw-r--r--extra/liblrdf/PKGBUILD17
1 files changed, 10 insertions, 7 deletions
diff --git a/extra/liblrdf/PKGBUILD b/extra/liblrdf/PKGBUILD
index 529cd3cef..f4e0141da 100644
--- a/extra/liblrdf/PKGBUILD
+++ b/extra/liblrdf/PKGBUILD
@@ -1,13 +1,13 @@
-# $Id: PKGBUILD 68012 2010-02-10 13:47:57Z giovanni $
+# $Id: PKGBUILD 110602 2011-02-20 15:55:20Z andyrtr $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
pkgname=liblrdf
pkgver=0.4.0
-pkgrel=6
+pkgrel=7
pkgdesc="A library for the manipulation of RDF file in LADSPA plugins"
arch=('i686' 'x86_64')
url="http://sourceforge.net/projects/lrdf"
-depends=('raptor>=1.4.15-2' 'ladspa')
+depends=('raptor1' 'ladspa')
makedepends=('pkgconfig')
license=('GPL')
options=('!libtool')
@@ -19,9 +19,12 @@ md5sums=('327a5674f671c4b360c6353800226877'
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
+ patch -Np1 -i "${srcdir}/md5.patch"
+ ./configure --prefix=/usr
+ make
+}
- patch -Np1 -i "${srcdir}/md5.patch" || return 1
- ./configure --prefix=/usr || return 1
- make || return 1
- make DESTDIR="${pkgdir}" install || return 1
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
}