summaryrefslogtreecommitdiff
path: root/repo/xiutils/xiutils.xibuild
blob: a00d99f45993b118b1714ef88e021909440d82b8 (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

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

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

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

build () {
    make
}

check () {
    make check
}

package () {
    make DESTDIR=$PKG_DEST install
}