diff options
Diffstat (limited to 'community/recoll/PKGBUILD')
-rw-r--r-- | community/recoll/PKGBUILD | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/community/recoll/PKGBUILD b/community/recoll/PKGBUILD new file mode 100644 index 000000000..3c892d148 --- /dev/null +++ b/community/recoll/PKGBUILD @@ -0,0 +1,50 @@ +# $Id: PKGBUILD 41903 2011-03-10 21:36:50Z ebelanger $ +# Contributor: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Vladimir Chizhov <jagoterr@gmail.com> +# Contributor: Robert Emil Berge <filoktetes@linuxophic.org> +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=recoll +pkgver=1.15.7 +pkgrel=1 +pkgdesc="Full text search tool based on Xapian backend" +arch=('i686' 'x86_64') +url="http://www.lesbonscomptes.com/recoll/" +license=('GPL') +depends=('xapian-core>=1.0.15-1' 'qt' 'openssl' 'hicolor-icon-theme') +optdepends=('unzip: for the OpenOffice.org documents' + 'xpdf: for pdf' + 'pstotext: for postscipt' + 'antiword: for msword' + 'catdoc: for ms excel and powerpoint' + 'unrtf: for RTF' + 'tetex: for dvi support with dvips' + 'djvulibre: for djvu' + 'id3lib: for mp3 tags support with id3info' + 'python2: for using some filters') +install=recoll.install +source=(http://www.lesbonscomptes.com/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('649ebef60a1920dc2a195211993b3489') +sha1sums=('2494d71e4218df5a7e6a9715ef8dcee82e977ff8') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + # python2 fix + for file in filters/{rclchm,rclexecm.py,rclics,rclpython,rclzip,rclaudio,rclinfo,rclkar,rcllatinclass.py} doc/user/usermanual.html; do + sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file + done + sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' desktop/hotrecoll.py + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man + + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install +} |