summaryrefslogtreecommitdiff
path: root/repo/extra/xipkg.xibuild
blob: 0779c1c8d76ed5bc00564cf31fd7f00137ba5bfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

DEPS=(bash tar)

SOURCE=https://git.davidovski.xyz/xilinux/xipkg.git
DESC="The xilinux package manager"

build () {
    make
    make DESTDIR=$PKG_DEST install
}

postinstall () {
    echo "TESTING POSTINSTALL"
    pip3 install --root $ROOT requests
}