diff options
Diffstat (limited to 'extra/raptor/PKGBUILD')
-rw-r--r-- | extra/raptor/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/raptor/PKGBUILD b/extra/raptor/PKGBUILD new file mode 100644 index 000000000..ac925631e --- /dev/null +++ b/extra/raptor/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 102988 2010-12-13 20:32:09Z andyrtr $ +# Maintainer: Andreas Radke <andyrtr at archlinux.org> +# Contributor: eric <eric@archlinux.org> +# Contributor: Damir Perisa <damir.perisa@bluewin.ch> + +pkgname=raptor +pkgver=1.4.21 +pkgrel=2 +pkgdesc="A C library that parses RDF/XML/N-Triples into RDF triples" +arch=('i686' 'x86_64') +url="http://librdf.org/raptor" +depends=('libxml2>=2.7.8' 'curl>=7.21.2' 'zlib>=1.2.5' 'libxslt>=1.1.26') +license=('LGPL') +options=('!libtool') +source=(http://librdf.org/dist/source/$pkgname-$pkgver.tar.gz) +md5sums=('992061488af7a9e2d933df6b694bb876') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --disable-static + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make prefix=${pkgdir}/usr install +} |