summaryrefslogtreecommitdiff
path: root/repo/pangomm/pangomm.xibuild
blob: 05e3a6bea03b6f3daca6dff67f17ea038dd0cd29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

NAME="pangomm"
DESC="C++ bindings for pango"

MAKEDEPS="meson ninja "
DEPS="cairomm glib glibmm libsigc++ musl pango"

PKG_VER=2.46.2
SOURCE="https://download.gnome.org/sources/pangomm/${PKG_VER%.*}/pangomm-$PKG_VER.tar.xz"

build () {
    mkdir build &&
    cd build    &&
    meson --prefix=/usr \
            .. &&
    ninja
}

package () {
    DESTDIR=$PKG_DEST ninja install
}