summaryrefslogtreecommitdiff
path: root/repo/xiutils/xiutils.xibuild
blob: a5650af70a88f4d3cf59912c2b6c667cf977fbc6 (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
26
27
#!/bin/sh

MAKEDEPS="make gcc"
DEPS="musl sh"

PKG_VER=1.8
SOURCE=https://git.davidovski.xyz/xilinux/xiutils.git
BRANCH="v$PKG_VER"

DESC="Utilities required by various components of the xilinux system"

prepare () {
    mkdir -p dist
    cp src/lib/colors.h dist/
}

build () {
    make
}

check () {
    make check
}

package () {
    make PREFIX=/usr DESTDIR=$PKG_DEST install
}