initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

33
python-pygobject/PKGBUILD Normal file
View File

@@ -0,0 +1,33 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
_pkgname=pygobject
pkgname=python-$_pkgname
pkgver=3.38.0
_pkgver=3.38
pkgrel=3
pkgdesc='Python bindings for GObject'
arch=(i686 x86_64)
url='https://wiki.gnome.org/Projects/PyGObject'
license=(LGPL-2.1)
depends=(gobject-introspection-runtime python)
makedepends=(gobject-introspection meson python-pycairo)
optdepends=('cairo: cairo bindings'
'gobject-introspection: gir bindings')
provides=(python-gobject "pygobject-devel=$pkgver")
conflicts=(python-gobject pygobject-devel)
replaces=(python-gobject 'pygobject-devel<=3.36.1-1')
source=(https://download.gnome.org/sources/$_pkgname/$_pkgver/$_pkgname-$pkgver.tar.xz)
sha512sums=('d63313dea2c143cf8c08a4678f1aa8e5908d503ad29c596eeb9fa1070e1231de57cf934c33031f9c4920b85e391f3b4143b46491ffd16e04e8d48871cb05e5df')
build() {
hyperbola-meson $_pkgname-$pkgver build
meson compile -C build
}
package() {
DESTDIR="$pkgdir" meson install -C build
python -m compileall -d /usr/lib "$pkgdir/usr/lib"
python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
install -Dm644 $_pkgname-$pkgver/COPYING -t $pkgdir/usr/share/licenses/$pkgname
}