summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Bourgeois2017-02-02 00:38:58 +0100
committerQuentin Bourgeois2017-02-02 00:38:58 +0100
commit22b2f0eae2f2ea977292e7578a12bf18bc8714c6 (patch)
tree4127f5583d1c9d1c373e4da1cc4361294c9f2899
parentb871d4d37457d32979124f637a406784afacd1ef (diff)
downloadaur-22b2f0eae2f2ea977292e7578a12bf18bc8714c6.tar.gz
<PKGBUILD: Remove install script>
This was for udev but it is smart enough to perform the job by its own.
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--moolticute.install22
3 files changed, 2 insertions, 26 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7f1bf889a811..da29c9e00030 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = moolticute-git
pkgdesc = Easy companion for Mooltipass device
- pkgver = 0.5.2.r0.g9486816
+ pkgver = 0.5.2.r20.g9a97fc1
pkgrel = 1
url = https://github.com/raoulh/moolticute
- install = moolticute.install
arch = x86_64
arch = i686
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index 7c2c6449e3cd..1774efd817d6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=moolticute-git
_pkgname="${pkgname%-git}"
-pkgver=0.5.2.r0.g9486816
+pkgver=0.5.2.r20.g9a97fc1
pkgrel=1
pkgdesc="Easy companion for Mooltipass device"
arch=('x86_64' 'i686')
@@ -18,7 +18,6 @@ makedepends=('git'
'make')
checkdepends=()
optdepends=()
-install="${_pkgname}.install"
source=("git+${url}.git"
'69-mooltipass.rules'
diff --git a/moolticute.install b/moolticute.install
deleted file mode 100644
index 971325d7c782..000000000000
--- a/moolticute.install
+++ /dev/null
@@ -1,22 +0,0 @@
-_reload_udev_rules() {
- udevadm control --reload
-}
-
-_print_install_add_step() {
- echo 'You may run udevadm trigger in order to apply newly installed udev' \
- 'rules to plugged Mooltipass'
-}
-
-post_install() {
- _reload_udev_rules
- _print_install_add_step
-}
-
-post_upgrade() {
- _reload_udev_rules
- _print_install_add_step
-}
-
-post_remove() {
- _reload_udev_rules
-}