diff options
author | Isaac David <isacdaavid@isacdaavid.info> | 2017-10-15 14:04:59 -0500 |
---|---|---|
committer | Isaac David <isacdaavid@isacdaavid.info> | 2017-10-15 14:04:59 -0500 |
commit | 97a9befb7c6e22c1e1282fb4801fa4506405598d (patch) | |
tree | 0da6820344b2a15057b89afcab377b2b2066b747 /libre/gnome-boxes/PKGBUILD | |
parent | 311e358f87d34a6c786154ac6a00b6cd66388882 (diff) | |
download | abslibre-97a9befb7c6e22c1e1282fb4801fa4506405598d.tar.gz abslibre-97a9befb7c6e22c1e1282fb4801fa4506405598d.tar.bz2 abslibre-97a9befb7c6e22c1e1282fb4801fa4506405598d.zip |
gnome-boxes: update to 3.24.0
Diffstat (limited to 'libre/gnome-boxes/PKGBUILD')
-rw-r--r-- | libre/gnome-boxes/PKGBUILD | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/libre/gnome-boxes/PKGBUILD b/libre/gnome-boxes/PKGBUILD index e9cff583a..1f4608041 100644 --- a/libre/gnome-boxes/PKGBUILD +++ b/libre/gnome-boxes/PKGBUILD @@ -1,13 +1,14 @@ # $Id: PKGBUILD 212492 2017-02-15 05:12:21Z bgyorgy $ # Maintainer (Arch): Balló György <ballogyor+arch at gmail dot com> # Contributor (Arch): Stefano Facchini <stefano.facchini@gmail.com> -# Maintainer: André Silva <emulatorman@hyperbola.info> +# Maintainer : Isaac David <isacdaavid@at@isacdaavid@dot@info> # Contributor: Daniel Milewski <niitotantei@gmail.com> +# Contributor : André Silva <emulatorman@hyperbola.info> pkgname=gnome-boxes -pkgver=3.22.4 +pkgver=3.24.0 pkgrel=1.parabola1 -pkgdesc="Simple GNOME application to access remote or virtual systems, without artwork for non-FSDG compliant distros and operating systems" +pkgdesc="Simple GNOME application to access remote or virtual systems, without suggestions (and logos) of nonfree operating systems" arch=('i686' 'x86_64' 'armv7h') url="https://wiki.gnome.org/Apps/Boxes" license=('LGPL') @@ -16,15 +17,16 @@ replaces=(${pkgname}-libre) depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret' 'libtracker-sparql' 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3') makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 'vala') -source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz - libre.patch) -sha256sums=('585a1c292010ebb479cb60e02621d01d450f84cdad82a61b7ce58a0218e1cff2' - '73ea08076d1e2608e27969fbf3127b5f45a659b2a8a89b04e349b519ce1d07ba') +source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz) +sha256sums=('7495ea7184b6ef650033daf6941328b785b22e522e8142b9d190575d215dec49') prepare() { cd $pkgname-$pkgver - - patch -Np1 -i "$srcdir/libre.patch" + # remove distro logos + find ./data/osinfo/ -type f -name '*.xml' -exec sed -i '/<os /,/\/os>/ d' {} + + # I'd rather not use Windows as example in user docs + find ./help/ -type f \( -name '*.po' -o -name '*.page' \) -exec \ + sed -Ei 's/(Microsoft )?Windows(™)?/Parabola/' {} + } build() { |