diff options
author | davidovski <david@davidovski.xyz> | 2022-04-07 12:01:06 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-04-07 12:01:06 +0100 |
commit | 65f2daa1e41f38db5e29a73af9c02d6c390b1d24 (patch) | |
tree | 61eaf6f75c3c689563b548aaa0c58771b573c1bb /repo/x11 | |
parent | 263f6e08dd1b5e79a54b6928a1d2559261950e72 (diff) |
added neovim and its dependencies
Diffstat (limited to 'repo/x11')
-rw-r--r-- | repo/x11/bspwm.xibuild | 4 | ||||
-rw-r--r-- | repo/x11/spice-protocol.xibuild | 20 | ||||
-rw-r--r-- | repo/x11/xf86-video-qxl.xibuild | 27 |
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 +} |