mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 21:57:22 +08:00
44 lines
1.2 KiB
Bash
44 lines
1.2 KiB
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=virtuoso
|
|
pkgver=6.1.2
|
|
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=('openssl')
|
|
makedepends=('bison' 'flex')
|
|
options=('!libtool' '!makeflags')
|
|
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-opensource-${pkgver}.tar.gz")
|
|
md5sums=('0519e1f104428e0c8b25fad89e3c57ef')
|
|
|
|
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
|
|
}
|