summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuraj Fiala2016-04-28 17:17:00 +0200
committerJuraj Fiala2016-04-28 17:17:00 +0200
commit080883e184f05e42f03e6ef8f554fe45cba04119 (patch)
tree58f888cd3471d7733223d37669585af2b7d53347
parentf8e766e9997a2666a3b19a919bc06c096b7e9710 (diff)
downloadaur-080883e184f05e42f03e6ef8f554fe45cba04119.tar.gz
Use pacman hooks.
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD3
-rw-r--r--bitmask_client.install19
3 files changed, 3 insertions, 24 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ea464d6c1947..8fb2897bab89 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,10 @@
# Generated by mksrcinfo v8
-# Sat Apr 9 13:11:25 UTC 2016
+# Thu Apr 28 15:17:00 UTC 2016
pkgbase = bitmask_client
pkgdesc = Encrypted communication for mere mortals.
pkgver = 0.9.1
- pkgrel = 5
+ pkgrel = 6
url = https://bitmask.net/
- install = bitmask_client.install
arch = any
license = GPL3
makedepends = python2-docutils
diff --git a/PKGBUILD b/PKGBUILD
index 2b4a252e68c3..63963a151a83 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
_srcname=leap.bitmask
pkgname=bitmask_client
pkgver=0.9.1
-pkgrel=5
+pkgrel=6
pkgdesc='Encrypted communication for mere mortals.'
arch=('any')
url='https://bitmask.net/'
@@ -46,7 +46,6 @@ makedepends=(
#'python2-flake8'
#'python2-tox'
#)
-install=$pkgname.install
source=(
"https://github.com/leapcode/$pkgname/archive/$pkgver.tar.gz"
"https://github.com/leapcode/$pkgname/archive/debian/experimental.zip"
diff --git a/bitmask_client.install b/bitmask_client.install
deleted file mode 100644
index 556949362efe..000000000000
--- a/bitmask_client.install
+++ /dev/null
@@ -1,19 +0,0 @@
-post_install() {
- echo -n "Updating desktop MIME database..."
- gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
- echo " done."
-
- echo -n "Updating icon cache..."
- update-desktop-database -q
- echo " done."
-}
-
-post_upgrade() {
- post_install $1
-}
-
-post_remove() {
- post_install $1
-}
-
-# vim:set sw=2 sts=2 et: