1234567891011121314151617181920212223 |
- # Tanım: GLib'in GObject sınıfı için Python 3'ün bağlantılarını sağlar.
- # URL: http://www.gnome.org/
- # Paketçi: milisarge
- # Gerekler: python3 python3-cairo gobject-introspection xorg-libxxf86vm libffi
- # Grup: kütüphane
- isim=python3-gobject
- surum=3.28.3
- devir=1
- kaynak=(http://ftp.gnome.org/pub/gnome/sources/pygobject/${surum%.*}/pygobject-$surum.tar.xz)
- derle() {
- cd pygobject-$surum
- mkdir python3
- pushd python3
- ../configure --prefix=/usr \
- --with-python=/usr/bin/python3
- make
- popd
- make DESTDIR=$PKG -C python3 install
- }
|