22 lines
548 B
Plaintext
22 lines
548 B
Plaintext
# Tanım: GLib'in GObject sınıfı için Python 2'nin bağlantılarını sağlar.
|
||
# URL: http://www.gnome.org/
|
||
# Paketçi: alihan-ozturk28@hotmail.com
|
||
# Gerekler: python3 python3-cairo gobject-introspection xorg-libxxf86vm libffi
|
||
|
||
name=python3-gobject
|
||
version=3.18.2
|
||
release=1
|
||
|
||
source=(http://ftp.gnome.org/pub/gnome/sources/pygobject/${version%.*}/pygobject-$version.tar.xz)
|
||
|
||
derle() {
|
||
cd pygobject-$version
|
||
mkdir python3
|
||
pushd python3
|
||
../configure --prefix=/usr \
|
||
--with-python=/usr/bin/python3
|
||
make
|
||
popd
|
||
make DESTDIR=$PKG -C python3 install
|
||
}
|