diff options
Diffstat (limited to 'repo/xi')
-rw-r--r-- | repo/xi/xibuild.xibuild | 17 | ||||
-rw-r--r-- | repo/xi/xipkg.xibuild | 11 |
2 files changed, 28 insertions, 0 deletions
diff --git a/repo/xi/xibuild.xibuild b/repo/xi/xibuild.xibuild new file mode 100644 index 0000000..71649fd --- /dev/null +++ b/repo/xi/xibuild.xibuild @@ -0,0 +1,17 @@ +#!/bin/bash + +DEPS=(bash tar git hg curl openssl ) + +SOURCE=https://git.davidovski.xyz/xilinux/xibuild.git +DESC="The build system for xilinux used to build packages and maintain repositories" + +package () { + mkdir -pv $PKG_DEST/usr/bin + cp -v xibuild $PKG_DEST/usr/bin/ + cp xibuild $PKG_DEST/usr/bin/ + + mkdir -pv $PKG_DEST/home/xibuild + cp -r * $PKG_DEST/home/xibuild +} + + diff --git a/repo/xi/xipkg.xibuild b/repo/xi/xipkg.xibuild new file mode 100644 index 0000000..f18745f --- /dev/null +++ b/repo/xi/xipkg.xibuild @@ -0,0 +1,11 @@ +#!/bin/bash + +DEPS=(tar python python-requests) + +SOURCE=https://git.davidovski.xyz/xilinux/xipkg.git +DESC="The xilinux package manager" + +build () { + make + make DESTDIR=$PKG_DEST install +} |