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