blob: 68b6afd9caadc48ea45e8aff0c01c88dbadbe3b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
MAKEDEPS="make"
DEPS="xiutils parseconf tar unzip hbar"
PKG_VER=1.5.4
SOURCE=https://git.davidovski.xyz/xilinux/xibuild.git
BRANCH=v$PKG_VER
DESC="Tools for building xipkgs on XiLinux"
package () {
make DESTDIR=$PKG_DEST install
}
|