summaryrefslogtreecommitdiff
path: root/repo/x11
diff options
context:
space:
mode:
Diffstat (limited to 'repo/x11')
-rw-r--r--repo/x11/bspwm.xibuild4
-rw-r--r--repo/x11/spice-protocol.xibuild20
-rw-r--r--repo/x11/xf86-video-qxl.xibuild27
3 files changed, 49 insertions, 2 deletions
diff --git a/repo/x11/bspwm.xibuild b/repo/x11/bspwm.xibuild
index b91a965..5512061 100644
--- a/repo/x11/bspwm.xibuild
+++ b/repo/x11/bspwm.xibuild
@@ -9,9 +9,9 @@ SOURCE=https://github.com/baskerville/bspwm/archive/refs/tags/$PKG_VER.tar.gz
DESC="Tiling window manager based on binary space partitioning"
build () {
- make
+ make PREFIX=/usr
}
package () {
- make DESTDIR=$PKG_DEST install
+ make PREFIX=/usr DESTDIR=$PKG_DEST install
}
diff --git a/repo/x11/spice-protocol.xibuild b/repo/x11/spice-protocol.xibuild
new file mode 100644
index 0000000..8656080
--- /dev/null
+++ b/repo/x11/spice-protocol.xibuild
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+MAKEDEPS="make"
+DEPS="xorg-server"
+
+DESC="Spice protocol headers"
+
+PKG_VER=0.14.3
+SOURCE=https://www.spice-space.org/download/releases/spice-protocol-$PKG_VER.tar.xz
+
+build () {
+ mkdir build
+ cd build
+ meson --prefix=/usr ..
+ ninja
+}
+
+package () {
+ DESTDIR=$PKG_DEST ninja install
+}
diff --git a/repo/x11/xf86-video-qxl.xibuild b/repo/x11/xf86-video-qxl.xibuild
new file mode 100644
index 0000000..f7fd090
--- /dev/null
+++ b/repo/x11/xf86-video-qxl.xibuild
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+MAKEDEPS="make spice-protocol"
+DEPS="xorg-server"
+
+DESC="X.org qxl video driver"
+
+PKG_VER=0.1.5
+SOURCE=https://www.x.org/pub/individual/driver/xf86-video-qxl-$PKG_VER.tar.bz2
+ADDITIONAL="
+ buildfix.patch
+ convert-xspice-python3.patch
+"
+
+prepare () {
+ apply_patches
+}
+
+build () {
+ ./configure $XORG_CONFIG
+ make
+}
+
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}