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

NAME="atkmm"
DESC="C++ bindings for atk"

MAKEDEPS="make "
DEPS="atk glib glibmm libsigc++ musl "

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

build () {
    ./configure \
        --prefix=/usr \
        --bindir=/usr/bin \
        --sysconfdir=/etc \
        --disable-static
    make
}

package () {
    make DESTDIR=$PKG_DEST install
}