summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--repo/x11/bspwm.xibuild15
-rw-r--r--repo/xi/xipkg.xibuild6
-rw-r--r--repo/xi/xiutils.xibuild3
3 files changed, 22 insertions, 2 deletions
diff --git a/repo/x11/bspwm.xibuild b/repo/x11/bspwm.xibuild
new file mode 100644
index 0000000..b3210d2
--- /dev/null
+++ b/repo/x11/bspwm.xibuild
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+MAKEDEPS=(make)
+DEPS=(xcb-util xcb-util-wm xcb-util-keysyms)
+
+PKG_VER=0.9.10
+SOURCE=https://github.com/baskerville/bspwm/archive/refs/tags/$PKG_VER.tar.gz
+
+build () {
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}
diff --git a/repo/xi/xipkg.xibuild b/repo/xi/xipkg.xibuild
index 5cc965d..afe0868 100644
--- a/repo/xi/xipkg.xibuild
+++ b/repo/xi/xipkg.xibuild
@@ -1,10 +1,12 @@
#!/bin/bash
MAKEDEPS=(make)
-DEPS=(dash xiutils findutils diffutils sed xichroot)
+DEPS=(openssl curl dash xiutils findutils diffutils sed xichroot)
+PKG_VER=1.0.1
SOURCE=https://git.davidovski.xyz/xilinux/xipkg.git
-BRANCH="rewrite"
+BRANCH="v$PKG_VER"
+
DESC="The xilinux package manager"
build () {
diff --git a/repo/xi/xiutils.xibuild b/repo/xi/xiutils.xibuild
index 533f13a..6c8faea 100644
--- a/repo/xi/xiutils.xibuild
+++ b/repo/xi/xiutils.xibuild
@@ -3,7 +3,10 @@
MAKEDEPS=(gcc)
DEPS=(bash)
+PKG_VER=1.0.1
SOURCE=https://git.davidovski.xyz/xilinux/xiutils.git
+BRANCH="v$PKG_VER"
+
DESC="Utilities required by various components of the xilinux system"
build () {