Date: Thursday, March 26, 2015 @ 22:03:32 Author: heftig Revision: 234988
3.16.0 Added: dconf-editor/trunk/PKGBUILD dconf-editor/trunk/dconf-editor.install ----------------------+ PKGBUILD | 28 ++++++++++++++++++++++++++++ dconf-editor.install | 12 ++++++++++++ 2 files changed, 40 insertions(+) Added: PKGBUILD =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2015-03-26 21:03:32 UTC (rev 234988) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) <[email protected]> + +pkgname=dconf-editor +pkgver=3.16.0 +pkgrel=1 +pkgdesc="dconf Editor" +arch=(i686 x86_64) +url="http://live.gnome.org/dconf" +license=('LGPL2.1') +depends=('gtk3' 'dconf') +makedepends=('vala' 'intltool') +install=dconf-editor.install +source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz) +sha256sums=('811af889202996495f6074a5dcf6df84c0300eaa7fc79cda31682815b8d162f9') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: Property changes on: dconf-editor/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: dconf-editor.install =================================================================== --- dconf-editor.install (rev 0) +++ dconf-editor.install 2015-03-26 21:03:32 UTC (rev 234988) @@ -0,0 +1,12 @@ +post_install() { + glib-compile-schemas /usr/share/glib-2.0/schemas + gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +}
