summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Weidenbaum2016-03-19 11:27:22 -0700
committerAndy Weidenbaum2016-03-19 11:27:22 -0700
commit8a670141dc3370b561138b644636a9a349f90ed3 (patch)
tree5e46dc33e0f1f0b10a417ea6d21006eacce6317c
parent67331efe4f1d0b40707d04f4cc136831f69f18aa (diff)
downloadaur-8a670141dc3370b561138b644636a9a349f90ed3.tar.gz
update pkgver to 20160319, fix electrum.install, return true if binaries not found
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD2
-rw-r--r--electrum.install9
3 files changed, 9 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0bc3be668598..bd4bfa278246 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Tue Mar 1 20:35:04 UTC 2016
+# Sat Mar 19 18:26:51 UTC 2016
pkgbase = electrum-git
pkgdesc = Lightweight Bitcoin wallet
- pkgver = 20160301
+ pkgver = 20160319
pkgrel = 1
url = https://github.com/spesmilo/electrum
install = electrum.install
diff --git a/PKGBUILD b/PKGBUILD
index a31b90aaa3a9..0a6c633eb12a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@
#
pkgname=electrum-git
-pkgver=20160301
+pkgver=20160319
pkgrel=1
pkgdesc="Lightweight Bitcoin wallet"
arch=('any')
diff --git a/electrum.install b/electrum.install
index 131aed9db39b..b9649c46769a 100644
--- a/electrum.install
+++ b/electrum.install
@@ -1,7 +1,10 @@
post_install() {
- [[ -x /usr/bin/update-desktop-database ]] && update-desktop-database -q
- [[ -x /usr/bin/xdg-icon-resource ]] && xdg-icon-resource forceupdate --theme hicolor
- [[ -x /usr/bin/gtk-update-icon-cache ]] && gtk-update-icon-cache -f -q /usr/share/icons/hicolor
+ ( [[ -x /usr/bin/update-desktop-database ]] && update-desktop-database -q ) \
+ || true
+ ( [[ -x /usr/bin/xdg-icon-resource ]] && xdg-icon-resource forceupdate --theme hicolor ) \
+ || true
+ ( [[ -x /usr/bin/gtk-update-icon-cache ]] && gtk-update-icon-cache -f -q /usr/share/icons/hicolor ) \
+ || true
}
post_upgrade() {