mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:47:15 +08:00
30 lines
773 B
Bash
30 lines
773 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=rasqal
|
|
pkgver=0.9.30
|
|
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=('x86_64')
|
|
depends=('raptor>=2.0.8' 'mpfr' 'util-linux')
|
|
options=('!libtool')
|
|
source=("http://download.librdf.org/source/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('b12c5f9cfdb6b04efce5a4a186b8416b')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--disable-static \
|
|
--enable-release
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|