Date: Wednesday, April 3, 2013 @ 16:45:30 Author: jgc Revision: 181368
Add new package Added: accerciser/ accerciser/repos/ accerciser/trunk/ accerciser/trunk/PKGBUILD accerciser/trunk/accerciser.install --------------------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ accerciser.install | 12 ++++++++++++ 2 files changed, 44 insertions(+) Added: accerciser/trunk/PKGBUILD =================================================================== --- accerciser/trunk/PKGBUILD (rev 0) +++ accerciser/trunk/PKGBUILD 2013-04-03 14:45:30 UTC (rev 181368) @@ -0,0 +1,32 @@ +# $Id: $ +# Maintainer: Jan de Groot <[email protected]> +# Contributor: Steve Holmes <[email protected]> +# Contributor: Giulio Bai <[email protected]> + +pkgname=accerciser +pkgver=3.8.0 +pkgrel=1 +pkgdesc="Interactive Python accessibility explorer for the GNOME desktop" +arch=('any') +url="http://live.gnome.org/Accerciser" +license=('BSD') +depends=('python' 'gtk3' 'python-gobject' 'hicolor-icon-theme') +makedepends=('itstool' 'docbook-xsl' 'intltool') +install=accerciser.install +groups=('gnome-extra') +source=(http://ftp.gnome.org/pub/GNOME/sources/accerciser/${pkgver%.*}/$pkgname-$pkgver.tar.xz) +sha256sums=('68260998c558b4b78999dd0dfc27225a2c8bf43dddb9a4be6ae159e2a89b57e0') + +build () { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --sysconfdir=/etc \ + --disable-schemas-compile + make +} + +package () { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR=${pkgdir} install + install -m 755 -d ${pkgdir}/usr/share/licenses/${pkgname} + install -m 644 COPYING ${pkgdir}/usr/share/licenses/${pkgname} +} Added: accerciser/trunk/accerciser.install =================================================================== --- accerciser/trunk/accerciser.install (rev 0) +++ accerciser/trunk/accerciser.install 2013-04-03 14:45:30 UTC (rev 181368) @@ -0,0 +1,12 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas +} + +post_upgrade(){ + post_install +} + +post_remove() { + post_install +}
