diff --git a/strigi/PKGBUILD b/strigi/PKGBUILD deleted file mode 100644 index c9eaa71eb..000000000 --- a/strigi/PKGBUILD +++ /dev/null @@ -1,46 +0,0 @@ -# Maintainer: Fabian Kosmale <0inkane@googlemail.com> -# Contributor: Giuseppe CalĂ  -# Contributor: alejandronova - -pkgname=strigi -pkgver=0.7.8 -pkgrel=7 -pkgdesc="Fast crawling desktop search engine with Qt4 GUI" -arch=('x86_64') -url="http://www.vandenoever.info/software/strigi/" -license=('GPL2') -depends=('bzip2' 'exiv2' 'libxml2' 'boost-libs' 'ffmpeg') -makedepends=('qt' 'cmake' 'pkgconfig' 'boost') -provides=('strigi-git') -replaces=('strigi-git') -conflicts=('strigi-git') -source=("http://www.vandenoever.info/software/${pkgname}/${pkgname}-${pkgver}.tar.bz2" - "gcc48.patch") -md5sums=('d69443234f4286d71997db9de543331a' - 'd48d65014650644ba61821813101c2f4') - -build() { - rm -rf build - mkdir build - pushd ${pkgname}-${pkgver}/libstreams - patch -p1 -i "${srcdir}"/gcc48.patch - popd - cd build - cmake ../${pkgname}-${pkgver} \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DENABLE_INOTIFY=ON \ - -DCMAKE_INSTALL_LIBDIR=lib \ - -DENABLE_LOG4CXX=OFF \ - -DENABLE_FAM=OFF \ - -DENABLE_CLUCENE=OFF \ - -DENABLE_CLUCENE_NG=OFF \ - -DENABLE_FFMPEG=ON \ - -DFORCE_DEPS=ON - make -} - -package() { - cd build/ - make DESTDIR="${pkgdir}" install -} diff --git a/strigi/gcc48.patch b/strigi/gcc48.patch deleted file mode 100644 index ed60e4fbb..000000000 --- a/strigi/gcc48.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- a/include/strigi/bufferedstream.h -+++ b/include/strigi/bufferedstream.h -@@ -34,7 +34,7 @@ - * BufferedStream will do the rest. - */ - template --class BufferedStream : public StreamBase { -+class STREAMS_EXPORT BufferedStream : public StreamBase { - private: - StreamBuffer buffer; - bool finishedWritingToBuffer; - diff --git a/strigi/strigi.install b/strigi/strigi.install deleted file mode 100644 index ea638fafa..000000000 --- a/strigi/strigi.install +++ /dev/null @@ -1,13 +0,0 @@ -post_install() { - if grep -q "fs.inotify.max_user_watches = 524288" "/etc/sysctl.conf" ; then - echo "nepomuk optimization found" - else - echo "fs.inotify.max_user_watches = 524288" >> /etc/sysctl.conf - fi -} - - -post_upgrade() { - post_install $1 -} -