mirror of
https://github.com/moparisthebest/arch-ppa
synced 2024-12-21 22:18:48 -05:00
Add x11spice
This commit is contained in:
parent
4e37a607a1
commit
2a70177e13
50
src/x11spice/PKGBUILD
Normal file
50
src/x11spice/PKGBUILD
Normal 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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user