summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeyslan G. Bem2017-02-11 13:12:37 -0300
committerGeyslan G. Bem2017-02-11 13:12:37 -0300
commit41e37c2e05326efe27c72a2c11c6017bb5ea2ae7 (patch)
tree0e40a5cc6bf1fa1308a977f6715204d6c18d1d8f
parentafec039d2bb2c0a0a7e389b4b933c59e47672d03 (diff)
downloadaur-41e37c2e05326efe27c72a2c11c6017bb5ea2ae7.tar.gz
improve post_install instruction
Signed-off-by: Geyslan G. Bem <geyslan@gmail.com>
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
-rw-r--r--ccid-morpho.install12
3 files changed, 9 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 12cd5396739a..557fa782eff0 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = ccid-morpho
pkgdesc = A USB Chip/Smart Card Interface Device driver (SAFRAN MORPHO YpsID Token)
pkgver = 1.4.3_1morpho
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/geyslan/morpho
install = ccid-morpho.install
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index 50f82f7a4d52..7efd9b50deb2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=ccid-morpho
pkgver=1.4.3_1morpho
_pkgver=${pkgver//_/-}
-pkgrel=1
+pkgrel=2
pkgdesc="A USB Chip/Smart Card Interface Device driver (SAFRAN MORPHO YpsID Token)"
arch=('i686' 'x86_64')
url="https://github.com/geyslan/morpho"
diff --git a/ccid-morpho.install b/ccid-morpho.install
index 768c63f78630..fd6cad14f105 100644
--- a/ccid-morpho.install
+++ b/ccid-morpho.install
@@ -1,15 +1,17 @@
## arg 1: the new package version
post_install() {
- echo "--"
- echo " You may have to enable and start pcscd (pcsclite) service, e.g."
- echo " $ systemctl enable pcscd"
+ echo "--"
+ echo "You may have to enable and start pcscd (pcsclite) service, e.g."
+ echo " $ systemctl enable pcscd"
echo " $ systemctl start pcscd"
- echo "--"
+ echo "If it's already running then you need restart it."
+ echo " $ systemctl restart pcscd"
+ echo "--"
}
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
- post_install
+ post_install
}