community/gnome-software to 3.26.5-1

This commit is contained in:
Kevin Mihelich 2018-01-11 20:05:38 +00:00
parent 3c14487395
commit 9380db576c

View file

@ -8,7 +8,7 @@
# - remove makedepend on valgrind, specify -Denable-valgrind=false
pkgname=gnome-software
pkgver=3.26.4
pkgver=3.26.5
pkgrel=1
pkgdesc="GNOME Software Tools"
arch=(x86_64)
@ -17,7 +17,7 @@ url="https://wiki.gnome.org/Apps/Software/"
depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop flatpak
packagekit archlinux-appstream-data gtkspell3 libgudev liboauth)
makedepends=(python docbook-xsl git meson gobject-introspection gtk-doc)
_commit=2d0d2d7bc464a35a9d26f6a6485bf38c716ace86 # tags/3.26.4^0
_commit=7424bad60e8336079eb7db639e0cc96c99d98354 # tags/3.26.5^0
source=("git+https://git.gnome.org/browse/gnome-software#commit=$_commit")
sha256sums=('SKIP')
@ -27,17 +27,14 @@ pkgver() {
}
prepare() {
mkdir build
cd $pkgname
}
build() {
cd build
arch-meson ../$pkgname -Denable-rpm=false -Denable-fwupd=false -Denable-valgrind=false
ninja
arch-meson $pkgname build -Denable-rpm=false -Denable-fwupd=false -Denable-valgrind=false
ninja -C build
}
package() {
cd build
DESTDIR="$pkgdir" ninja install
DESTDIR="$pkgdir" ninja -C build install
}