diff options
Diffstat (limited to 'community/kiwi/PKGBUILD')
-rw-r--r-- | community/kiwi/PKGBUILD | 32 |
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" +} |