rasqal: initial commit, version 0.9.33

This commit is contained in:
Tim Biermann 2019-08-11 11:14:13 +02:00
parent c7b3acca68
commit caad3c9431
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 45 additions and 0 deletions

22
rasqal/.footprint Normal file
View File

@ -0,0 +1,22 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/rasqal-config
-rwxr-xr-x root/root usr/bin/roqet
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/rasqal/
-rw-r--r-- root/root usr/include/rasqal/rasqal.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/librasqal.a
-rwxr-xr-x root/root usr/lib/librasqal.la
lrwxrwxrwx root/root usr/lib/librasqal.so -> librasqal.so.3.0.0
lrwxrwxrwx root/root usr/lib/librasqal.so.3 -> librasqal.so.3.0.0
-rwxr-xr-x root/root usr/lib/librasqal.so.3.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/rasqal.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/rasqal-config.1.gz
-rw-r--r-- root/root usr/share/man/man1/roqet.1.gz
drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/librasqal.3.gz

5
rasqal/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF32xNp21JaqgaFDO1LDqc4opJJYFgY30SYtHZFheKDotkIw9iWDsWO4j2wiKnzkhs1oU+gz/FV18kUI5I9sQ7ZQg=
SHA256 (Pkgfile) = ce7baabf1dc1d04dd82c1a670622bca50947edf317764e0cf7ad127001b845f4
SHA256 (.footprint) = dadbb856226835ee48f72a8dde14b13c1076ada2ac112dfa742f9c46d9b3023d
SHA256 (rasqal-0.9.33.tar.gz) = 6924c9ac6570bd241a9669f83b467c728a322470bf34f4b2da4f69492ccfd97c

18
rasqal/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: 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
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libgcrypt libmpfr libpcre raptor
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 \
--enable-release
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/gtk-doc
}