core/rasqal/PKGBUILD

33 lines
794 B
Bash
Raw Normal View History

#
# Platform Packages for Chakra, part of chakra-project.org
#
2010-03-14 23:48:48 +08:00
pkgname=rasqal
2014-06-09 01:53:44 +08:00
pkgver=0.9.32
2014-12-15 17:04:04 +08:00
pkgrel=2
pkgdesc="A free C library that handles Resource Description Framework (RDF) query syntaxes, query construction and query execution returning result bindings"
2010-03-14 23:48:48 +08:00
url="http://librdf.org/rasqal"
license=('GPL' 'LGPL')
arch=('x86_64')
2014-06-09 01:53:44 +08:00
depends=('raptor' 'mpfr' 'util-linux')
source=("http://download.librdf.org/source/${pkgname}-${pkgver}.tar.gz")
2014-06-09 01:53:44 +08:00
md5sums=('dc7c6107de00c47f85f6ab7db164a136')
2010-03-14 23:48:48 +08:00
build() {
cd ${srcdir}/${pkgname}-${pkgver}
2011-07-08 06:22:40 +08:00
./configure --prefix=/usr \
--disable-static \
--enable-release
make
}
2014-06-09 01:53:44 +08:00
check() {
cd ${srcdir}/${pkgname}-${pkgver}
make -k check || true # still fails some checks
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
2011-07-08 06:22:40 +08:00
make DESTDIR=${pkgdir} install
2010-03-14 23:48:48 +08:00
}