summaryrefslogtreecommitdiff
path: root/extra/gnome-robots
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-04-23 01:16:16 -0700
committerroot <root@rshg054.dnsready.net>2013-04-23 01:16:16 -0700
commitd1d93fafb9ef98fdd0c9a5a486c179c03cbbfb33 (patch)
treeda594e49962aa1b32a81dd8066423c4fd5fdcec6 /extra/gnome-robots
parenta5f6ca5d4e1aa12dfec53c3061df6e0198126fb4 (diff)
Tue Apr 23 01:16:16 PDT 2013
Diffstat (limited to 'extra/gnome-robots')
-rw-r--r--extra/gnome-robots/PKGBUILD36
-rw-r--r--extra/gnome-robots/gnome-robots.install47
2 files changed, 83 insertions, 0 deletions
diff --git a/extra/gnome-robots/PKGBUILD b/extra/gnome-robots/PKGBUILD
new file mode 100644
index 000000000..8f4c471d2
--- /dev/null
+++ b/extra/gnome-robots/PKGBUILD
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 183394 2013-04-21 22:10:16Z heftig $
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
+# Contributor: Jan de Groot <jgc@archlinux.org>
+
+pkgname=gnome-robots
+pkgver=3.8.1
+pkgrel=1
+pkgdesc="Avoid the robots and make them crash into each other"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'gtk3' 'libcanberra' 'librsvg')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+conflicts=('gnome-games')
+replaces=('gnome-games')
+options=('!emptydirs' '!libtool')
+install=gnome-robots.install
+url="https://live.gnome.org/Robots"
+groups=('gnome-extra')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('6faeeef5ab9b5002c7ca3cf60ea67e7a66064654ae28c68c233b2ee40459a704')
+
+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"
+}
diff --git a/extra/gnome-robots/gnome-robots.install b/extra/gnome-robots/gnome-robots.install
new file mode 100644
index 000000000..3422e0c8a
--- /dev/null
+++ b/extra/gnome-robots/gnome-robots.install
@@ -0,0 +1,47 @@
+_scores=(
+ gnome-robots2.robots2.scores
+ gnome-robots2.robots2-safe.scores
+ gnome-robots2.robots2-super-safe.scores
+ gnome-robots2.robots2_easy.scores
+ gnome-robots2.robots2_easy-safe.scores
+ gnome-robots2.robots2_easy-super-safe.scores
+ gnome-robots2.classic_robots.scores
+ gnome-robots2.classic_robots-safe.scores
+ gnome-robots2.classic_robots-super-safe.scores
+ gnome-robots2.robots_with_safe_teleport.scores
+ gnome-robots2.robots_with_safe_teleport-safe.scores
+ gnome-robots2.robots_with_safe_teleport-super-safe.scores
+ gnome-robots2.nightmare.scores
+ gnome-robots2.nightmare-safe.scores
+ gnome-robots2.nightmare-super-safe.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
+}