mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:47:14 +08:00
41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=virtuoso
|
|
pkgver=6.1.5
|
|
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')
|
|
options=('!libtool' '!makeflags')
|
|
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-opensource-${pkgver}.tar.gz")
|
|
md5sums=('61b53395e14a11dd7e7715b50261b9eb')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-opensource-${pkgver}
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
--localstatedir=/var \
|
|
--sysconfdir=/etc \
|
|
--disable-rendezvous \
|
|
--disable-hslookup \
|
|
--disable-all-vads
|
|
make
|
|
}
|
|
|
|
package() {
|
|
# install server
|
|
cd ${srcdir}/${pkgname}-opensource-${pkgver}/binsrc/virtuoso
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
# install driver
|
|
cd ${srcdir}/${pkgname}-opensource-${pkgver}/binsrc/driver
|
|
make DESTDIR=${pkgdir} install
|
|
}
|