From 2a70177e13d60018de16aadba574ba0ee83ca0b3 Mon Sep 17 00:00:00 2001 From: moparisthebest Date: Mon, 25 Nov 2019 22:40:11 -0500 Subject: [PATCH] Add x11spice --- src/x11spice/PKGBUILD | 50 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/x11spice/PKGBUILD diff --git a/src/x11spice/PKGBUILD b/src/x11spice/PKGBUILD new file mode 100644 index 0000000..889b9f8 --- /dev/null +++ b/src/x11spice/PKGBUILD @@ -0,0 +1,50 @@ +# Maintainer: Your Name + +pkgname=x11spice +pkgver=1.1 +pkgrel=1 +pkgdesc="Connects a running X server as a Spice server." +arch=('i686' 'x86_64') +url="https://gitlab.freedesktop.org/spice/x11spice" +license=(GPL3) +depends=(spice gtk3) +makedepends=(spice-protocol git libxcb xcb-util gtk3 xf86-video-qxl libcacard xorg-util-macros) +optdepends=() +provides=() +conflicts=() +replaces=() +backup=() +options=() +changelog= +source=("$pkgname-$pkgver::git+https://gitlab.freedesktop.org/spice/x11spice") +noextract=() +md5sums=('SKIP') + +pkgver() +{ + echo $pkgver +} + +check() +{ + echo "Skipped" +} + +prepare() +{ + echo "Prepare" +} + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./autogen.sh + ./configure --prefix=/usr --sysconfdir=/etc + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir/" install +} +