summaryrefslogtreecommitdiff
path: root/repo/system/glib.xibuild
blob: daaabeda4a3e8390ed4cb535dfcdd17a058aeced (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)
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 () {
    ninja DESTDIR=$PKG_DEST 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

}