diff options
Diffstat (limited to 'nonprism/gnome-settings-daemon')
-rw-r--r-- | nonprism/gnome-settings-daemon/PKGBUILD | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/nonprism/gnome-settings-daemon/PKGBUILD b/nonprism/gnome-settings-daemon/PKGBUILD index 1850a815e..133fbd5e0 100644 --- a/nonprism/gnome-settings-daemon/PKGBUILD +++ b/nonprism/gnome-settings-daemon/PKGBUILD @@ -1,32 +1,39 @@ -# $Id: PKGBUILD 268868 2016-06-03 12:09:10Z jgc $ +# $Id: PKGBUILD 278216 2016-10-11 12:16:12Z heftig $ # Maintainer (Arch): Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> # Maintainer: André Silva <emulatorman@parabola.nu> pkgname=gnome-settings-daemon -pkgver=3.20.1+8+g40bf4fd +pkgver=3.22.1 pkgrel=1.nonprism1 -pkgdesc="The GNOME Settings daemon, without geoclue2 support" +pkgdesc="GNOME Settings Daemon, without geoclue2 support" +url="https://git.gnome.org/browse/gnome-settings-daemon" arch=(i686 x86_64) license=(GPL) depends=(dconf gnome-desktop gsettings-desktop-schemas libcanberra-pulse libnotify libsystemd libwacom pulseaudio pulseaudio-alsa upower - librsvg libgweather geocode-glib nss libgudev libnm-glib) + librsvg libgweather geocode-glib nss libgudev gtk3-print-backends libnm-glib) # since geoclue2 was removed, libnm-glib has been added as deps makedepends=(intltool xf86-input-wacom libxslt docbook-xsl python git gnome-common) -options=('!emptydirs') -url="http://www.gnome.org" groups=(gnome) -source=('git://git.gnome.org/gnome-settings-daemon#commit=40bf4fdce0001c662094f47e8edc1b0855ec9632' +_commit=3ee42193f8772b5eb39b0b5a4d175b00abce033d # tags/GNOME_SETTINGS_DAEMON_3_22_1^0 +source=("git://git.gnome.org/gnome-settings-daemon#commit=$_commit" + "git://git.gnome.org/libgnome-volume-control" nonprism.patch) sha256sums=('SKIP' + 'SKIP' '27fba52c36ee9d072e9602e843af55d970f128eb7ede1a828e86ea874765b1a6') pkgver() { cd $pkgname - git describe --long | sed -e 's/-/+/g' -e 's/^GNOME_SETTINGS_DAEMON_//' -e 's/_/./g' + git describe --tags | sed 's/^GNOME_SETTINGS_DAEMON_//;s/_/./g;s/-/+/g' } prepare() { cd $pkgname + + git submodule init + git config --local submodule."panels/media-keys/gvc".url "$srcdir/libgnome-volume-control" + git submodule update + NOCONFIGURE=1 ./autogen.sh patch -p1 -i $srcdir/nonprism.patch } |