summaryrefslogtreecommitdiffstats
path: root/kiwi/Pkgfile
blob: 2a91c3a70334126785a5301e31fb8d158eb61a76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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

}