blob: a416790a14408d70cd841e1e6ca9300d1b7d0f97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# $Id: PKGBUILD 180822 2016-06-23 14:37:44Z spupykin $
# Maintainer (Arch): Balló György <ballogyor+arch at gmail dot com>
# Contributor (Arch): Stefano Facchini <stefano.facchini@gmail.com>
# Maintainer: André Silva <emulatorman@parabola.nu>
# Contributor: Daniel Milewski <niitotantei@gmail.com>
pkgname=gnome-boxes
pkgver=3.20.2
pkgrel=2.parabola1
pkgdesc="Simple GNOME application to access remote or virtual systems, without nonfree system logos"
arch=('i686' 'x86_64')
url="https://wiki.gnome.org/Apps/Boxes"
license=('LGPL')
conflicts=(${pkgname}-libre)
replaces=(${pkgname}-libre)
depends=('gtk-vnc' 'libarchive' 'libosinfo' 'libsoup' 'libvirt-glib'
'spice-gtk3' 'libtracker-sparql' 'qemu' 'cdrkit' 'mtools' 'dconf'
'libusb' 'libgudev')
makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 'vala')
source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz
libre.patch)
sha256sums=('c0379ce1de9d2a43a6875cbe1f2ef7ef69161b284926d59c44246a9142130fc5'
'73ea08076d1e2608e27969fbf3127b5f45a659b2a8a89b04e349b519ce1d07ba')
prepare() {
cd $pkgname-$pkgver
patch -Np1 -i "$srcdir/libre.patch"
}
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \
--disable-schemas-compile --enable-smartcard
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
|