PKGBUILDs/extra/rasqal/PKGBUILD
2009-10-09 21:23:22 -05:00

22 lines
771 B
Bash

# $Id: PKGBUILD 51090 2009-09-04 20:07:01Z andyrtr $
# Maintainer: AndyRTR <andyrtr@archlinux.org>
# Contributor: Lawrence Lee <valheru@facticius.net>
pkgname=rasqal
pkgver=0.9.16
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.19' 'mpfr')
options=('!libtool')
source=(http://download.librdf.org/source/${pkgname}-${pkgver}.tar.gz)
md5sums=('fca8706f2c4619e2fa3f8f42f8fc1e9d')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr --enable-gtk-doc --disable-static
make || return 1
make DESTDIR=${pkgdir} install || return 1
}