mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 00:57:32 +08:00
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
# $Id: $
|
|
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
|
# Contributor: Massimiliano Torromeo <massimiliano DOT torromeo AT google mail service>
|
|
|
|
pkgname=virtuoso
|
|
pkgver=6.1.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=('openssl')
|
|
makedepends=('bison' 'flex')
|
|
options=('!libtool' '!makeflags')
|
|
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-opensource-${pkgver}.tar.gz")
|
|
md5sums=('0695bffacf78e53733c27e96c9d7f9e7')
|
|
|
|
build() {
|
|
cd $srcdir/${pkgname}-opensource-${pkgver}
|
|
|
|
./configure --prefix=/usr \
|
|
--localstatedir=/var \
|
|
--sysconfdir=/etc \
|
|
--disable-rendezvous \
|
|
--disable-hslookup \
|
|
--disable-all-vads || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
# install server
|
|
cd ${srcdir}/${pkgname}-opensource-${pkgver}/binsrc/virtuoso
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
|
|
# install driver
|
|
cd ${srcdir}/${pkgname}-opensource-${pkgver}/binsrc/driver
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|