diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-04-30 20:05:18 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-04-30 20:05:18 +0200 |
commit | 736b7bc37429345044b899239340277b14b5f2c8 (patch) | |
tree | 5614d0bb78237e3dd4cd22e8dfa9e111e8122266 /base/virtuoso/Pkgfile | |
parent | 0267bc905a32fbab761a4bfd401b77ddaf9e2069 (diff) | |
download | nutyx-extra-736b7bc37429345044b899239340277b14b5f2c8.tar.gz nutyx-extra-736b7bc37429345044b899239340277b14b5f2c8.tar.bz2 nutyx-extra-736b7bc37429345044b899239340277b14b5f2c8.tar.xz nutyx-extra-736b7bc37429345044b899239340277b14b5f2c8.zip |
Ajout de virtuoso#6.1.1-1
Diffstat (limited to 'base/virtuoso/Pkgfile')
-rwxr-xr-x | base/virtuoso/Pkgfile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/base/virtuoso/Pkgfile b/base/virtuoso/Pkgfile new file mode 100755 index 000000000..53c5780db --- /dev/null +++ b/base/virtuoso/Pkgfile @@ -0,0 +1,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 +} + |