first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/pygobject/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/pygobject/changes.md Normal file
View File

@@ -0,0 +1,2 @@
# 3.44.1
First version

20
src/pygobject/pkg.sh Normal file
View File

@@ -0,0 +1,20 @@
NAME="pygobject"
DESC="Python bindings to the GObject class from GLib"
VERSION="3.44.1"
FILES=("https://download.gnome.org/sources/pygobject/3.44/pygobject-$VERSION.tar.xz")
HASHES=("def9418983594c6a3330717bb640ca4d")
DEPENDS=("gobject-introspection" "pycairo")
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
mv -v tests/test_gdbus.py{,.nouse}
mkdir build
cd build
meson setup --prefix=/usr --buildtype=release ..
ninja && DESTDIR="$ROOTDIR" ninja install
cd ../.. && rm -r $NAME-$VERSION
}