# $Id: PKGBUILD 69672 2010-02-21 19:04:10Z andyrtr $ # Maintainer: AndyRTR # Contributor: Lawrence Lee pkgname=rasqal pkgver=0.9.19 pkgrel=1 pkgdesc="a free C library that handles Resource Description Framework (RDF) query syntaxes, query construction and query execution returning result bindings" url="http://librdf.org/rasqal" license=('GPL' 'LGPL') arch=('i686' 'x86_64') depends=('raptor>=1.4.21' 'mpfr') options=('!libtool') source=(http://download.librdf.org/source/${pkgname}-${pkgver}.tar.gz) md5sums=('9bc1b40ffe1bdc794887d845d153bd4e') build() { cd ${srcdir}/${pkgname}-${pkgver} ./configure --prefix=/usr --disable-static --enable-release \ --with-raptor=system make || return 1 make DESTDIR=${pkgdir} install || return 1 }