summaryrefslogtreecommitdiff
path: root/repo/devel/icecream-sundae.xibuild
blob: b58e2411b3f3d7de86930d39c954a16ff4cb59bf (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
#!/bin/bash

MAKEDEPS=(meson ninja)
DEPS=(ncurses glib icecream)

PKG_VER=1.0.0
SOURCE=https://github.com/JPEWdev/icecream-sundae

DESC="A build distribution service based on distcc"


build () {
    mkdir builddir
    cd builddir

    meson .. --buildtype release
    ninja

}


package () {
    DESTDIR=$PKG_DEST ninja install
}