Commit | Line | Data |
---|---|---|
55743809 VM |
1 | # Description: A middleware layer between C libraries (using GObject) and language bindings. |
2 | # URL: https://live.gnome.org/GObjectIntrospection | |
3 | # Maintainer: Danny Rawlins, crux at romster dot me | |
4 | # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu | |
5 | # Depends on: glib | |
6 | ||
7 | name=gobject-introspection | |
13f2c86f | 8 | version=1.62.0 |
55743809 VM |
9 | release=1 |
10 | source=(https://ftp.gnome.org/pub/GNOME/sources/$name/${version::4}/$name-$version.tar.xz) | |
11 | ||
12 | build() { | |
13 | cd $name-$version | |
14 | ||
15 | meson build \ | |
16 | --prefix /usr \ | |
17 | -D gtk_doc=false \ | |
18 | -D doctool=false | |
19 | ||
20 | ninja -C build -j ${JOBS:-1} | |
21 | DESTDIR="$PKG" ninja -C build install | |
22 | } |