diff options
author | root <root@rshg047.dnsready.net> | 2011-04-28 22:32:07 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-04-28 22:32:07 +0000 |
commit | 19f42937be8f6619a85663cb71e24c05b7e8b6d2 (patch) | |
tree | e7d059bcc0b5c309ff565da9be68ade7f29ef5fc /staging/rasqal | |
parent | 8784d3134c1d4b4c02d705259ae2ebd768c778fd (diff) |
Thu Apr 28 22:32:07 UTC 2011
Diffstat (limited to 'staging/rasqal')
-rw-r--r-- | staging/rasqal/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/staging/rasqal/PKGBUILD b/staging/rasqal/PKGBUILD new file mode 100644 index 000000000..c246d1528 --- /dev/null +++ b/staging/rasqal/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 121005 2011-04-27 20:12:19Z andrea $ +# Maintainer: AndyRTR <andyrtr@archlinux.org> +# Contributor: Lawrence Lee <valheru@facticius.net> + +pkgname=rasqal +pkgver=0.9.25 +pkgrel=2 +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>=2.0.2' 'mpfr') +options=('!libtool') +source=(http://download.librdf.org/source/${pkgname}-${pkgver}.tar.gz) +md5sums=('ee12d7ad59c581eb65db89c851672c0a') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr \ + --disable-static \ + --enable-release + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} |