diff options
Diffstat (limited to 'zbar')
-rw-r--r-- | zbar/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/zbar/PKGBUILD b/zbar/PKGBUILD new file mode 100644 index 0000000..d33ab2e --- /dev/null +++ b/zbar/PKGBUILD @@ -0,0 +1,23 @@ +# Contributor: Radu Andries <admiral0@tuxfamily.org> +pkgname=zbar +pkgver=0.10 +pkgrel=1 +pkgdesc="An open source software suite for reading bar codes from various sources" +arch=('i686' 'x86_64') +url="http://zbar.sourceforge.net/" +license=('LGPL') +depends=(imagemagick) +optdepends=("python: python library") +provides=() +source=("http://downloads.sourceforge.net/project/zbar/zbar/$pkgver/zbar-$pkgver.tar.bz2") + +build() { + cd "$srcdir/zbar-$pkgver" + + ./configure --prefix=/usr --without-qt --disable-video --without-gtk --without-x + make || return 1 + make DESTDIR="$pkgdir/" install +} + +# vim:set ts=2 sw=2 et: +md5sums=('0fd61eb590ac1bab62a77913c8b086a5') |