19 lines
426 B
Plaintext
19 lines
426 B
Plaintext
|
# Description: A free C library that handles Resource Description Framework (RDF) query syntaxes
|
||
|
# URL: http://download.librdf.org/source/
|
||
|
# Packager: pierre at nutyx dot org
|
||
|
# Depends on: libxslt raptor libgcrypt
|
||
|
|
||
|
name=rasqal
|
||
|
version=0.9.33
|
||
|
release=1
|
||
|
|
||
|
source=(http://download.librdf.org/source/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr \
|
||
|
--disable-static
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|