summaryrefslogtreecommitdiffstats
path: root/kiwi/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'kiwi/Pkgfile')
-rwxr-xr-xkiwi/Pkgfile24
1 files changed, 24 insertions, 0 deletions
diff --git a/kiwi/Pkgfile b/kiwi/Pkgfile
new file mode 100755
index 000000000..2a91c3a70
--- /dev/null
+++ b/kiwi/Pkgfile
@@ -0,0 +1,24 @@
+# Description: Un ensemble de classes pour PyGTK
+# URL: http://www.async.com.br/projects/kiwi
+# Maintainer: William Rea <sillywilly@gmail.com>
+# Packager: lesibel at free dot fr
+# Depends on: pygtk
+# Run on:
+
+name=kiwi
+version=1.9.29
+release=1
+
+source=(http://download.gnome.org/sources/$name/1.9/$name-$version.tar.bz2)
+
+build() {
+ cd $SRC/$name-$version
+ 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
+
+ python2 setup.py install --root=$PKG
+
+}
+