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/spice-protocol.xibuild | |
parent | 263f6e08dd1b5e79a54b6928a1d2559261950e72 (diff) |
added neovim and its dependencies
Diffstat (limited to 'repo/x11/spice-protocol.xibuild')
-rw-r--r-- | repo/x11/spice-protocol.xibuild | 20 |
1 files changed, 20 insertions, 0 deletions
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 +} |