virtuoso git build, trying nepomuk fix, kdelibs & runtime attica rebuild

This commit is contained in:
Anke 2012-07-04 23:47:50 +00:00
parent e5d6ce9316
commit 25ec3d529e
3 changed files with 42 additions and 2 deletions

View File

@ -12,7 +12,7 @@ source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname="kde-runtime" pkgname="kde-runtime"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
pkgver=${_kdever} pkgver=${_kdever}
pkgrel=1 pkgrel=2
pkgdesc="KDE Runtime" pkgdesc="KDE Runtime"
url="http://www.kde.org" url="http://www.kde.org"
license=('GPL' 'LGPL' 'FDL') license=('GPL' 'LGPL' 'FDL')

View File

@ -13,7 +13,7 @@ source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname="kdelibs" pkgname="kdelibs"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
pkgver=${_kdever} pkgver=${_kdever}
pkgrel=1 pkgrel=2
pkgdesc="KDE Core Libraries" pkgdesc="KDE Core Libraries"
url="http://www.kde.org" url="http://www.kde.org"
license=('GPL' 'LGPL' 'FDL') license=('GPL' 'LGPL' 'FDL')

40
virtuoso/PKGBUILD Normal file
View File

@ -0,0 +1,40 @@
#
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas@chakra-project.org
pkgname=virtuoso
pkgver=6.1.5.1
pkgrel=1
arch=('i686' 'x86_64')
pkgdesc='A scalable cross-platform server that combines SQL/RDF/XML Data Management with Web Application Server and Web Services Platform functionality'
url='http://virtuoso.openlinksw.com/wiki/main/Main/'
license=('GPL')
depends=('libldap')
makedepends=('bison' 'flex' 'gperf')
options=('!libtool')
source=("openlink-virtuoso-opensource-7edcc17.tar.xz")
md5sums=('886745446fb06eddf8bf2495cb41da06')
build() {
cd ${srcdir}/openlink-virtuoso-opensource-7edcc17
./autogen.sh
./configure --prefix=/usr \
--localstatedir=/var \
--sysconfdir=/etc \
--disable-rendezvous \
--disable-hslookup \
--disable-all-vads
make
}
package() {
# install server
cd ${srcdir}/openlink-virtuoso-opensource-7edcc17/binsrc/virtuoso
make DESTDIR=${pkgdir} install
# install driver
cd ${srcdir}/openlink-virtuoso-opensource-7edcc17/binsrc/driver
make DESTDIR=${pkgdir} install
}