Date: Tuesday, April 2, 2013 @ 15:40:21 Author: jgc Revision: 181225 Add new game
Added: gnome-nibbles/ gnome-nibbles/repos/ gnome-nibbles/trunk/ gnome-nibbles/trunk/PKGBUILD gnome-nibbles/trunk/gnome-nibbles.install -----------------------+ PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ gnome-nibbles.install | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) Added: gnome-nibbles/trunk/PKGBUILD =================================================================== --- gnome-nibbles/trunk/PKGBUILD (rev 0) +++ gnome-nibbles/trunk/PKGBUILD 2013-04-02 13:40:21 UTC (rev 181225) @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 168943 2012-10-16 16:31:44Z heftig $ +# Maintainer: Jan Alexander Steffens (heftig) <[email protected]> +# Contributor: Jan de Groot <[email protected]> + +pkgname=gnome-nibbles +pkgver=3.8.0 +pkgrel=1 +pkgdesc="Guide a worm around a maze" +arch=('i686' 'x86_64') +license=('GPL') +depends=('desktop-file-utils' 'hicolor-icon-theme' 'clutter-gtk' 'libcanberra' 'librsvg') +makedepends=('intltool' 'itstool' 'gobject-introspection') +conflicts=('gnome-games') +replaces=('gnome-games') +options=('!emptydirs' '!libtool') +install=gnome-nibbles.install +url="https://live.gnome.org/Nibbles" +groups=('gnome-extra') +source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz) +sha256sums=('bc1e4f687f1e794ef15a4162492154970300ac682378e59f9471327e5fd0d606') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --disable-schemas-compile \ + --with-scores-user=root --with-scores-group=games + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install + + # Remove all scores, we generate them from postinstall + rm -rf "$pkgdir/var" +} Added: gnome-nibbles/trunk/gnome-nibbles.install =================================================================== --- gnome-nibbles/trunk/gnome-nibbles.install (rev 0) +++ gnome-nibbles/trunk/gnome-nibbles.install 2013-04-02 13:40:21 UTC (rev 181225) @@ -0,0 +1,40 @@ +_scores=( + gnome-nibbles.1.0.scores + gnome-nibbles.2.0.scores + gnome-nibbles.3.0.scores + gnome-nibbles.4.0.scores + gnome-nibbles.1.1.scores + gnome-nibbles.2.1.scores + gnome-nibbles.3.1.scores + gnome-nibbles.4.1.scores +) + +post_install() { + glib-compile-schemas usr/share/glib-2.0/schemas + update-desktop-database -q + gtk-update-icon-cache -q -f usr/share/icons/hicolor + + for score in "${_scores[@]}" ; do + if [ -e "var/games/$score" ]; then + continue + fi + + touch "var/games/$score" + chown root:games "var/games/$score" + chmod 664 "var/games/$score" + done +} + +post_upgrade() { + post_install +} + +post_remove() { + glib-compile-schemas usr/share/glib-2.0/schemas + update-desktop-database -q + gtk-update-icon-cache -q -f usr/share/icons/hicolor + + for score in "${_scores[@]}" ; do + rm -f "var/games/$score" + done +}
