diff options
author | root <root@rshg054.dnsready.net> | 2012-05-27 00:05:57 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-05-27 00:05:57 +0000 |
commit | 1f45ad8e3f17397e2f44e68ef9a0d860091eea9e (patch) | |
tree | c739dcbb4950142bbb793715bfd19fb2d6cc80ef /kde-unstable/soprano | |
parent | a5721a07196cf00c26ea1bfb651aab756d202ccb (diff) |
Sun May 27 00:05:56 UTC 2012
Diffstat (limited to 'kde-unstable/soprano')
-rw-r--r-- | kde-unstable/soprano/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/kde-unstable/soprano/PKGBUILD b/kde-unstable/soprano/PKGBUILD new file mode 100644 index 000000000..77b8d6fb9 --- /dev/null +++ b/kde-unstable/soprano/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 159614 2012-05-25 21:30:09Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Tobias Powalowski <tpowa@archlinux.org> + +pkgname=soprano +pkgver=2.7.6.git20120525 +pkgrel=1 +pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 framework for RDF data' +arch=('i686' 'x86_64') +url='http://soprano.sourceforge.net/' +license=('GPL' 'LGPL') +depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso') +makedepends=('cmake' 'openjdk6' 'doxygen') +source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.xz") +#source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2") +md5sums=('fe2e81a54ed8e22e06e0bf4b394b4960') + +build() { + cd "${srcdir}" + mkdir build + cd build + . /etc/profile.d/openjdk6.sh + # we need the rpath + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_SKIP_RPATH=OFF \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DSOPRANO_DISABLE_CLUCENE_INDEX=ON + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} |