blob: 53c5780db3dfe11a4f8a91bc4ed078b9c6a346e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: 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
# Maintainer: NuTyX packager team
# Packager: lesibel at free dot ch
name=virtuoso
version=6.1.1
release=1
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-opensource-$version.tar.gz)
build() {
cd $name-opensource-$version
./configure --prefix=/usr \
--localstatedir=/var \
--sysconfdir=/etc \
--disable-rendezvous \
--disable-hslookup \
--disable-all-vads
make
make DESTDIR=$PKG install
rm -r $PKG/usr/bin/isql
}
|