summaryrefslogtreecommitdiff
path: root/community/kiwi
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/kiwi
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/kiwi')
-rw-r--r--community/kiwi/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/community/kiwi/PKGBUILD b/community/kiwi/PKGBUILD
new file mode 100644
index 000000000..b532a6e6c
--- /dev/null
+++ b/community/kiwi/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 85550 2013-03-03 03:09:38Z cinelli $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
+# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
+# Contributor: William Rea <sillywilly@gmail.com>
+
+pkgname=kiwi
+pkgver=1.9.29
+pkgrel=2
+pkgdesc="A set of classes and wrappers for PyGTK"
+arch=('i686' 'x86_64')
+url="http://www.async.com.br/projects/kiwi"
+license=("LGPL")
+depends=('python2' 'python' 'pygtk' 'gtk')
+makedepends=('gettext')
+source=("http://download.gnome.org/sources/$pkgname/1.9/$pkgname-$pkgver.tar.bz2")
+sha256sums=('0ffa912cd180b3092b3ff636c582ab2c40f0f8eb541ada07b1432631a2d49e90')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ # Apply Python2 fix.
+ for file in bin/{kiwi-i18n,kiwi-ui-test} setup.py; do
+ echo "Applying python2 fix for $file"
+ sed -i 's_/usr/bin/env python_/usr/bin/env python2_' "$file"
+ done
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ python2 setup.py install --root="$pkgdir"
+}