summaryrefslogtreecommitdiffstats
path: root/strigi/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'strigi/Pkgfile')
-rwxr-xr-xstrigi/Pkgfile25
1 files changed, 25 insertions, 0 deletions
diff --git a/strigi/Pkgfile b/strigi/Pkgfile
new file mode 100755
index 000000000..71db7bf8b
--- /dev/null
+++ b/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
+}