Merge pull request #6149 from kmadac/master

spice-vdagent: spice-vdagentd service added
This commit is contained in:
Enno Boland 2017-04-10 23:53:26 +02:00 committed by GitHub
commit 47ab01a448
2 changed files with 8 additions and 1 deletions

View file

@ -0,0 +1,3 @@
#!/bin/sh
mkdir -p /var/run/spice-vdagentd
exec /usr/bin/spice-vdagentd -x

View file

@ -1,7 +1,7 @@
# Template file for 'spice-vdagent'
pkgname=spice-vdagent
version=0.17.0
revision=1
revision=2
build_style=gnu-configure
hostmakedepends="pkg-config"
makedepends="libglib-devel dbus-devel libXfixes-devel libXrandr-devel
@ -19,3 +19,7 @@ configure_args="--sbindir=/usr/bin"
do_install() {
make DESTDIR=${DESTDIR} udevrulesdir=/usr/lib/udev/rules.d install
}
post_install() {
vsv spice-vdagentd
}