first commit
This commit is contained in:
3
src/gobject-introspection/.gitignore
vendored
Normal file
3
src/gobject-introspection/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/gobject-introspection/changes.md
Normal file
2
src/gobject-introspection/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.76.1
|
||||
First version
|
19
src/gobject-introspection/pkg.sh
Normal file
19
src/gobject-introspection/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user