mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
libraries/redland: Updated for version 1.0.9
This commit is contained in:
parent
e6840b4ba8
commit
a1e674cc2c
3 changed files with 19 additions and 12 deletions
|
@ -5,5 +5,4 @@ each of the RDF concepts in its own class via an object based API,
|
||||||
reflected into the language APIs, currently C#, Java, Perl, PHP,
|
reflected into the language APIs, currently C#, Java, Perl, PHP,
|
||||||
Python, Ruby and Tcl.
|
Python, Ruby and Tcl.
|
||||||
|
|
||||||
This requires raptor and rasqal, both of which are available at
|
This requires raptor and rasqal.
|
||||||
SlackBuilds.org.
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# Slackware build script for redland
|
# Slackware build script for redland
|
||||||
|
|
||||||
# Copyright 2007-2008 Heinz Wiesinger <hmwiesinger@gmx.at>
|
# Copyright 2007-2009 Heinz Wiesinger <pprkut@liwjatan.at>
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use of this script, with or without modification, is
|
# Redistribution and use of this script, with or without modification, is
|
||||||
|
@ -23,9 +23,9 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=redland
|
PRGNAM=redland
|
||||||
VERSION=1.0.8
|
VERSION=1.0.9
|
||||||
ARCH=${ARCH:-i486}
|
ARCH=${ARCH:-i486}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-2}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
CWD=$(pwd)
|
CWD=$(pwd)
|
||||||
|
@ -52,6 +52,13 @@ cd $PRGNAM-$VERSION
|
||||||
chown -R root:root .
|
chown -R root:root .
|
||||||
chmod -R u+w,go+r-w,a-s .
|
chmod -R u+w,go+r-w,a-s .
|
||||||
|
|
||||||
|
# Fix loading of modular storage engine from external applications
|
||||||
|
# like SVN revision 15171
|
||||||
|
for i in MYSQL POSTGRESQL SQLITE TSTORE; do
|
||||||
|
sed -i "s/LIBADD = @${i}_LIBS@/LIBADD = @${i}_LIBS@ librdf.la/" \
|
||||||
|
src/Makefile.in
|
||||||
|
done
|
||||||
|
|
||||||
CFLAGS="$SLKCFLAGS" \
|
CFLAGS="$SLKCFLAGS" \
|
||||||
CXXFLAGS="$SLKCFLAGS" \
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
./configure \
|
./configure \
|
||||||
|
@ -60,7 +67,8 @@ CXXFLAGS="$SLKCFLAGS" \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
--mandir=/usr/man \
|
--mandir=/usr/man \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--with-threads
|
--with-threads \
|
||||||
|
--build=$ARCH-slackware-linux
|
||||||
|
|
||||||
make
|
make
|
||||||
make install-strip DESTDIR=$PKG
|
make install-strip DESTDIR=$PKG
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
PRGNAM="redland"
|
PRGNAM="redland"
|
||||||
VERSION="1.0.8"
|
VERSION="1.0.9"
|
||||||
HOMEPAGE="http://librdf.org/"
|
HOMEPAGE="http://librdf.org/"
|
||||||
DOWNLOAD="http://download.librdf.org/source/redland-1.0.8.tar.gz"
|
DOWNLOAD="http://download.librdf.org/source/redland-1.0.9.tar.gz"
|
||||||
MD5SUM="ca66e26082cab8bb817185a116db809b"
|
MD5SUM="e5ef0c29c55b4f0f5aeed7955b4d383b"
|
||||||
MAINTAINER="ppr:kut"
|
MAINTAINER="pprkut"
|
||||||
EMAIL="HMWiesinger@gmx.at"
|
EMAIL="pprkut@liwjatan.at"
|
||||||
APPROVED="Erik Hanson"
|
APPROVED="dsomero"
|
||||||
|
|
Loading…
Reference in a new issue