diff options
Diffstat (limited to 'community/unpaper/PKGBUILD')
-rw-r--r-- | community/unpaper/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/community/unpaper/PKGBUILD b/community/unpaper/PKGBUILD new file mode 100644 index 000000000..ea0e42e87 --- /dev/null +++ b/community/unpaper/PKGBUILD @@ -0,0 +1,21 @@ +# $Id: PKGBUILD 21219 2010-07-15 09:47:52Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Andreas Hauser <andy-aur@splashground.de> + +pkgname=unpaper +pkgver=0.3 +pkgrel=1 +pkgdesc="post-processing tool for scanned sheets of paper" +url="http://$pkgname.berlios.de/" +license="GPL" +depends=() +arch=('i686' 'x86_64') +makedepends=(gcc) +source=("http://download.berlios.de/unpaper/$pkgname-${pkgver}.tar.gz") +md5sums=('be41eaf8556e7df39ab53939c99c4f7b') + +build() { + cd $srcdir/$pkgname-$pkgver/src + gcc $CFLAGS -lm -funroll-all-loops -fomit-frame-pointer -ftree-vectorize -o unpaper unpaper.c + install -D -m0755 unpaper $pkgdir/usr/bin/unpaper +} |