updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / x3270 / x3270.install
blob9063c537922060b6b6e5f491fc134359b5bf9c81
1 # arg 1:  the new package version
2 pre_install() {
3   /bin/true
6 # arg 1:  the new package version
7 post_install() {
8   echo -n "updating font cache... "
9   cd /usr/share/fonts/3270
10   /usr/bin/fc-cache -f > /dev/null
11   /usr/bin/mkfontdir
12   /usr/bin/mkfontscale
13   xset fp+ /usr/share/fonts/3270/
14   xset fp rehash
15   echo -e "\n--> You can put the hosts you want to connect to"
16   echo "--> in /etc/x3270/ibm_hosts"
19 # arg 1:  the new package version
20 # arg 2:  the old package version
21 pre_upgrade() {
22   /bin/true
25 # arg 1:  the new package version
26 # arg 2:  the old package version
27 post_upgrade() {
28   post_install $1
31 # arg 1:  the old package version
32 pre_remove() {
33   [ -d /usr/share/fonts/3270 ] || return
34   rm -rf /usr/share/fonts/3270
37 # arg 1:  the old package version
38 post_remove() {
39   echo -n "rebuilding font cache"
40   fc-cache -f > /dev/null
41   xset fp- /usr/share/fonts/3270/
42   xset fp rehash
45 op=$1
46 shift
47 $op $*