Add x11spice

This commit is contained in:
Travis Burtrum 2019-11-25 22:40:11 -05:00
parent 4e37a607a1
commit 2a70177e13
1 changed files with 50 additions and 0 deletions

50
src/x11spice/PKGBUILD Normal file
View File

@ -0,0 +1,50 @@
# Maintainer: Your Name <youremail@domain.com>
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
}