diff options
Diffstat (limited to 'extra/strigi/Pkgfile')
-rwxr-xr-x | extra/strigi/Pkgfile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/extra/strigi/Pkgfile b/extra/strigi/Pkgfile new file mode 100755 index 000000000..71db7bf8b --- /dev/null +++ b/extra/strigi/Pkgfile @@ -0,0 +1,25 @@ +# Description: Outil de recherche pour bureau kde +# URL: http://strigi.sourceforge.net +# Maintainer: NuTyX packager team +# Packager: lesibel at free dot fr +# Depends on: curl, cmake, clucene, qt, xerces-c, exiv2, gamin, ffmpeg, boost +# Run on: curl,clucene,qt,xerces-c,exiv2,gamin,boost + +name=strigi +version=0.7.6 +release=1 +source=(http://cdn.debian.net/debian/pool/main/s/$name/${name}_$version.orig.tar.bz2) + +build() { + cd $name-$version + mkdir build + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr \ + -DENABLE_EXPAT=ON \ + -DENABLE_FAM=ON \ + -DENABLE_INOTIFY=ON \ + -DENABLE_LOG4CXX=OFF \ + -DENABLE_SQLITE=OFF .. + make + make DESTDIR=$PKG install +} |