diff options
author | sibel sibel <lesibel@free.fr> | 2010-02-13 09:41:15 +0100 |
---|---|---|
committer | sibel sibel <lesibel@free.fr> | 2010-02-13 09:41:15 +0100 |
commit | 597a9f32d6a26c9242412abfd748af7f507c5f6c (patch) | |
tree | 7cdee63d352551cc210bba20be8f520e90bc8a85 /kde/virtuoso/Pkgfile | |
parent | 8f13cd1a9afcdfc0359ed23dd6dbd1e60cf5b929 (diff) | |
download | nutyx-pakxe-597a9f32d6a26c9242412abfd748af7f507c5f6c.tar.gz nutyx-pakxe-597a9f32d6a26c9242412abfd748af7f507c5f6c.tar.bz2 nutyx-pakxe-597a9f32d6a26c9242412abfd748af7f507c5f6c.tar.xz nutyx-pakxe-597a9f32d6a26c9242412abfd748af7f507c5f6c.zip |
maj virtuoso#6.1.0-2 deps et Pkgfile
Diffstat (limited to 'kde/virtuoso/Pkgfile')
-rwxr-xr-x | kde/virtuoso/Pkgfile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/kde/virtuoso/Pkgfile b/kde/virtuoso/Pkgfile new file mode 100755 index 000000000..037108ac9 --- /dev/null +++ b/kde/virtuoso/Pkgfile @@ -0,0 +1,27 @@ +# 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 +# Depends on: openssl, bison, flexi + +name=virtuoso +version=6.1.0 +release=2 +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 + # install server + cd $SRC/$name-opensource-$version/binsrc/virtuoso + make DESTDIR=$PKG install + # install driver + cd $SRC/$name-opensource-$version/binsrc/driver + make DESTDIR=$PKG install +} + |