summaryrefslogtreecommitdiff
path: root/repo/system/glib.xibuild
blob: 47602a19ffe8615cba4e48998343940129682c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash

MAKEDEPS=(meson ninja docbook-xsl docbook-dtd)
DEPS=(pcre libffi zlib glibc libxslt gdb )

PKG_VER=2.70.2
SOURCE=https://download.gnome.org/sources/glib/$(echo $PKG_VER | cut -d. -f-2)/glib-$PKG_VER.tar.xz
DESC="Low level core library"

build () {
    mkdir build &&
    cd    build &&

    meson --prefix=/usr       \
          --buildtype=release \
          -Dman=true          \
          ..                  &&
    ninja
}
package () {
    DESTDIR=$PKG_DEST ninja install
    mkdir -p $PKG_DEST/usr/share/doc/glib-$PKG_VER &&
    cp -r ../docs/reference/{NEWS,gio,glib,gobject} $PKG_DEST/usr/share/doc/glib-$PKG_VER

}