PKGBUILDs/community/recoll/PKGBUILD
2009-10-09 21:15:33 -05:00

33 lines
1 KiB
Bash

# $Id: PKGBUILD 1945 2009-09-06 19:12:37Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Vladimir Chizhov <jagoterr@gmail.com>
# Contributor: Robert Emil Berge <filoktetes@linuxophic.org>
pkgname=recoll
pkgver=1.12.1
pkgrel=2
pkgdesc="Full text search tool based on Xapian backend"
arch=('i686' 'x86_64')
license=('GPL')
url="http://www.lesbonscomptes.com/recoll/"
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')
install=recoll.install
source=(http://www.lesbonscomptes.com/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('d338a7427058c4c85bf60101cb014255')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr --mandir=/usr/share/man
make || return 1
make DESTDIR=${pkgdir} install
}