blob: 94fa7010a3a795d73b75d4d9b2292c8f53bdf95e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Permet l'implémentation de code python dans des applications utilisant gtk
# URL: http://www.pygtk.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on:
# Run on:
#gtk, gtksourceview, pygobject, pycairo, libglade, pygtk
name=pygtksourceview
version=2.6.0
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/2.6/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-docs
make
make DESTDIR=$PKG install
}
|