diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2019-09-11 21:19:48 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-11 21:18:43 -0300 |
commit | 6f5e63d4d5db02535d0576d4babb44a517085bb3 (patch) | |
tree | 15fb37b5c614c9ffcc27de7b5c59e52eb9a9ecd6 /testing | |
parent | e3239b3e2fa96020d2de168695c8e883b55ce2f8 (diff) | |
download | aports-6f5e63d4d5db02535d0576d4babb44a517085bb3.tar.bz2 aports-6f5e63d4d5db02535d0576d4babb44a517085bb3.tar.xz |
testing/gnome-boxes: new aport
Diffstat (limited to 'testing')
-rw-r--r-- | testing/gnome-boxes/APKBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/testing/gnome-boxes/APKBUILD b/testing/gnome-boxes/APKBUILD new file mode 100644 index 0000000000..7923d984a3 --- /dev/null +++ b/testing/gnome-boxes/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: Rasmus Thomsen <oss@cogitri.dev> +# Maintainer: Rasmus Thomsen <oss@cogitri.dev> +pkgname="gnome-boxes" +pkgver="3.34.0" +pkgrel=0 +pkgdesc="Virtualization made simple" +url="https://wiki.gnome.org/Apps/Boxes" +arch="all" +license="GPL-2.0-only" +depends="libvirt-daemon" +makedepends="meson vala libarchive-dev glib-dev gtk+3.0-dev gtk-vnc-dev + libosinfo-dev libsecret-dev libsoup-dev libusb-dev libvirt-glib-dev + libxml2-dev spice-gtk-dev tracker-dev vte3-dev webkit2gtk-dev + libgudev-dev freerdp-dev itstool" +subpackages="$pkgname-lang" +source="https://download.gnome.org/sources/gnome-boxes/${pkgver%.*}/gnome-boxes-$pkgver.tar.xz" + +build() { + meson \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + --buildtype=release \ + . output + ninja -C output +} + +check() { + ninja -C output test +} + +package() { + DESTDIR="$pkgdir" ninja -C output install +} + +sha512sums="00a41a8b2c571c7d2018984f8d341bc8c5e0fa00afc0d383477486b1c40c14e7ac9384d6e19d584a9072ada13851bcc60a7bb1067c5aa72342b9121617c3db93 gnome-boxes-3.34.0.tar.xz" |