mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
virtuoso git build, trying nepomuk fix, kdelibs & runtime attica rebuild
This commit is contained in:
parent
e5d6ce9316
commit
25ec3d529e
@ -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')
|
||||||
|
@ -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
40
virtuoso/PKGBUILD
Normal 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
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user