summaryrefslogtreecommitdiff
path: root/community/recoll/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/recoll/PKGBUILD')
-rw-r--r--community/recoll/PKGBUILD32
1 files changed, 17 insertions, 15 deletions
diff --git a/community/recoll/PKGBUILD b/community/recoll/PKGBUILD
index 35de41104..4a05001dd 100644
--- a/community/recoll/PKGBUILD
+++ b/community/recoll/PKGBUILD
@@ -1,15 +1,15 @@
-# $Id: PKGBUILD 59455 2011-11-25 11:15:21Z spupykin $
+# $Id: PKGBUILD 67278 2012-03-06 10:44:14Z arodseth $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# 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.16.2
-pkgrel=1
+pkgrel=2
pkgdesc="Full text search tool based on Xapian backend"
-arch=('i686' 'x86_64' 'mips64el')
+arch=('x86_64' 'i686' 'mips64el')
url="http://www.lesbonscomptes.com/recoll/"
license=('GPL')
depends=('xapian-core>=1.0.15-1' 'qt' 'openssl' 'hicolor-icon-theme')
@@ -25,30 +25,32 @@ optdepends=('libxslt: for XML based formats (fb2,etc)'
'id3lib: for mp3 tags support with id3info'
'python2: for using some filters'
'mutagen: Audio metadata'
- 'python-pychm: CHM files'
- 'perl-exiftool: EXIF data from raw files'
+ 'python2-pychm: CHM files'
+ 'perl-image-exiftool: EXIF data from raw files'
'aspell-en: English stemming support')
install=recoll.install
-source=(http://www.lesbonscomptes.com/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('1bbe35a1c0fb248d1c5b3a4c3ed20d1c')
+source=("http://www.lesbonscomptes.com/$pkgname/$pkgname-$pkgver.tar.gz")
+sha256sums=('f0f29dff2d82ef8541c51963870f31daf28472f3c8822c81c17c346769b77355')
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ 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
+ msg2 "Python2 fix"
+ for file in filters/{rclchm,rclexecm.py,rclics,rclpython,rclzip,rclaudio,rclinfo,rclkar,rcllatinclass.py,rclwar,rclrar} 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
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
}
+
+# vim:set ts=2 sw=2 et: