blob: a2995fd0e22ab904cbd29617b35eb65579ec27fa (
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: Bindings Python2 pour GConf.
# URL: http://www.gnome.org/
# Maintainer: NuTyX GNOME team
# Packager: piernov <piernov@piernov.org>
# Depends on: pygtk, gconf
# Run on: pygtk,gconf
name=python-gconf
_name=gnome-python
version=2.28.1
release=1
source=(http://download.gnome.org/sources/$_name/${version%.*}/$_name-$version.tar.bz2)
build() {
cd $_name-$version
PYTHON=python2 ./configure --prefix=/usr \
--disable-gtk-doc \
--disable-allbindings \
--enable-gconf
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
rm -rf $PKG/usr/lib/pkgconfig
}
|