summaryrefslogtreecommitdiff
path: root/repo/extra/xipkg.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-10-06 21:04:28 +0100
committerdavidovski <david@davidovski.xyz>2021-10-06 21:04:28 +0100
commit9d965006a98553a7492532b707757685fa99fc7b (patch)
tree076c203b875971117f388c9fc000536590ddfd72 /repo/extra/xipkg.xibuild
parentbeb0e949f6189884cd31fdf0f95e5d35be6a2a93 (diff)
added xipkg
Diffstat (limited to 'repo/extra/xipkg.xibuild')
-rw-r--r--repo/extra/xipkg.xibuild16
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/
+}
+