diff options
Diffstat (limited to 'repo/extra/xipkg.xibuild')
-rw-r--r-- | repo/extra/xipkg.xibuild | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/repo/extra/xipkg.xibuild b/repo/extra/xipkg.xibuild new file mode 100644 index 0000000..f89a97d --- /dev/null +++ b/repo/extra/xipkg.xibuild @@ -0,0 +1,16 @@ +#!/bin/bash + +DEPS=(bash tar) + +SOURCE=https://git.davidovski.xyz/xilinux/xipkg.git +DESC="The xilinux package manager" + +build () { + make +} + +package () { + mkdir -pv $PKG_DEST/usr/bin + cp -v ./bin/xi $PKG_DEST/usr/bin/ +} + |