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/gobject-introspection/.gitignore vendored Normal file
View File

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

View File

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

View File

@ -0,0 +1,19 @@
NAME="gobject-introspection"
DESC="Used to describe the program APIs and collect them in a uniform, machine readable format"
VERSION="1.76.1"
FILES=("https://download.gnome.org/sources/gobject-introspection/1.76/gobject-introspection-$VERSION.tar.xz")
HASHES=("5cb554fdd139db79f9b1be13892fddac")
DEPENDS=("glib")
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
mkdir build
cd build
meson setup --prefix=/usr --buildtype=release ..
ninja && DESTDIR=${ROOTDIR} ninja install
cd ../.. && rm -rf $NAME-$VERSION
}