blob: 94606aae0d7323a897d52253377cc207da0ae007 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
DEPS=(tar python python-requests)
SOURCE=https://git.davidovski.xyz/xilinux/xipkg.git
DESC="The xilinux package manager"
build () {
make
}
package () {
make DESTDIR=$PKG_DEST install || true
}
|