summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Anderson2018-01-26 21:00:13 -0800
committerEric Anderson2018-01-26 21:00:13 -0800
commit3e1f6e4376c9ab1fe543ebfd3bf47414cee05d9b (patch)
tree799685b1d7027e30adfe17bfa26ea4491005279b
parent0232d02f1abbafc0fc2c9d5e1e6d75269db7ea68 (diff)
downloadaur-3e1f6e4376c9ab1fe543ebfd3bf47414cee05d9b.tar.gz
Let the pacman hooks update dbs on install
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD4
-rw-r--r--quarry.install11
3 files changed, 4 insertions, 16 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e7f4e6d25a00..dac135628795 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sat Jan 30 22:14:10 UTC 2016
+# Sat Jan 27 05:00:07 UTC 2018
pkgbase = quarry
pkgdesc = A multi-purpose GUI for Go, Amazons, and Othello
pkgver = 0.3.0.1
- pkgrel = 1
+ pkgrel = 2
url = https://gitorious.org/quarry/quarry/
install = quarry.install
arch = i686
@@ -11,7 +11,6 @@ pkgbase = quarry
license = GPL
makedepends = xmlto
depends = librsvg
- depends = desktop-file-utils
depends = gtk2
optdepends = gnugo: play Go against the computer
optdepends = grhino: play Othello against the computer
diff --git a/PKGBUILD b/PKGBUILD
index c3a894e379dd..55b2b3741bc4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,14 +3,14 @@
pkgname=quarry
pkgver=0.3.0.1
-pkgrel=1
+pkgrel=2
pkgdesc="A multi-purpose GUI for Go, Amazons, and Othello"
arch=('i686' 'x86_64')
# Originally http://home.gna.org/quarry/ (abandoned)
# Brief developement at https://gitorious.org/quarry/ (dead with gitorious)
url='https://gitorious.org/quarry/quarry/'
license=('GPL')
-depends=('librsvg' 'desktop-file-utils' 'gtk2')
+depends=('librsvg' 'gtk2')
optdepends=('gnugo: play Go against the computer'
'grhino: play Othello against the computer')
makedepends=('xmlto')
diff --git a/quarry.install b/quarry.install
index 7b00834c318d..e27d73b4452f 100644
--- a/quarry.install
+++ b/quarry.install
@@ -1,16 +1,5 @@
post_install() {
- post_remove $1
-
echo 'To play against computers, you must manually add GTP Engines in preferences:'
echo '- For GNU Go, use "gnugo --mode gtp --quiet" as the command'
echo '- For GRhino, use "gtp-rhino" as the command'
}
-
-post_upgrade() {
- post_install $1
-}
-
-post_remove() {
- update-desktop-database -q
- update-mime-database /usr/share/mime
-}