commit caad3c9431bb22b4441f7ea5f30805249da6ab8b Author: Tim Biermann <tbier@posteo.de> Date: Sun Aug 11 11:14:13 2019 +0200 rasqal: initial commit, version 0.9.33 diff --git a/rasqal/.footprint b/rasqal/.footprint new file mode 100644 index 00000000..7ffe9a4a --- /dev/null +++ b/rasqal/.footprint @@ -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 diff --git a/rasqal/.signature b/rasqal/.signature new file mode 100644 index 00000000..871a3bde --- /dev/null +++ b/rasqal/.signature @@ -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 diff --git a/rasqal/Pkgfile b/rasqal/Pkgfile new file mode 100644 index 00000000..263b8eb6 --- /dev/null +++ b/rasqal/Pkgfile @@ -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 +}