mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:38:28 +08:00
24 lines
798 B
Bash
24 lines
798 B
Bash
# $Id: PKGBUILD 69672 2010-02-21 19:04:10Z andyrtr $
|
|
# Maintainer: AndyRTR <andyrtr@archlinux.org>
|
|
# Contributor: Lawrence Lee <valheru@facticius.net>
|
|
|
|
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
|
|
}
|