diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/scantailor |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/scantailor')
-rw-r--r-- | community/scantailor/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/scantailor/PKGBUILD b/community/scantailor/PKGBUILD new file mode 100644 index 000000000..34d6976de --- /dev/null +++ b/community/scantailor/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 33966 2010-11-29 21:42:36Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Denis Terskov aka neurosurgeon <terskov.den@gmail.com> + +pkgname=scantailor +pkgver=0.9.9.2 +pkgrel=1 +pkgdesc="Interactive post-processing tool for scanned pages" +arch=(i686 x86_64) +url="http://scantailor.sourceforge.net" +license="GPL" +depends=('qt') +makedepends=('cmake boost') +source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('0944b12c936019fe12269c7a356d60d0') + +build() { + cd $srcdir/$pkgname-$pkgver + cmake -DCMAKE_INSTALL_PREFIX=/usr + make + make DESTDIR="$pkgdir" install +} |