summaryrefslogtreecommitdiff
path: root/~mtjm
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-10-26 16:58:53 -0500
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-10-26 16:58:53 -0500
commitff0b5a38e2b5fd732e485c1851b80d85527a1cd3 (patch)
tree99fed68411c6b885ae827c741f6355b19d3b9c93 /~mtjm
parentb17b2dbde422e5f40b7ba692768fa4c71df4dd6b (diff)
parent624bd13e3c8b63d5cf6934807a160296a018f84b (diff)
Merge branch 'master' of gitpar:abslibre-mips64el
Diffstat (limited to '~mtjm')
-rw-r--r--~mtjm/zbar/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/~mtjm/zbar/PKGBUILD b/~mtjm/zbar/PKGBUILD
new file mode 100644
index 000000000..7e21561e6
--- /dev/null
+++ b/~mtjm/zbar/PKGBUILD
@@ -0,0 +1,28 @@
+# Parabola maintainer: Michał Masłowski <mtjm@mtjm.eu>
+# Based on https://aur.archlinux.org/packages.php?ID=33527
+# Contributor: Radu Andries <admiral0@tuxfamily.org>
+pkgname=zbar
+pkgver=0.10
+pkgrel=1
+pkgdesc="A library for reading bar codes from various sources"
+arch=('i686' 'x86_64' 'mips64el')
+url="http://zbar.sourceforge.net/"
+license=('LGPL')
+depends=('glibc')
+provides=()
+source=("http://downloads.sourceforge.net/project/zbar/zbar/$pkgver/zbar-$pkgver.tar.bz2")
+options=(!libtool !emptydirs)
+
+# Disabled nearly everything since I don't need it and some of it needs fixes.
+
+build() {
+ cd "$srcdir/zbar-$pkgver"
+
+ ./configure --prefix=/usr --without-qt --disable-video --without-python \
+ --without-imagemagick --without-gtk --disable-static
+ make || return 1
+ make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:
+md5sums=('0fd61eb590ac1bab62a77913c8b086a5')