updated on Mon Jan 16 16:00:41 UTC 2012
[aur-mirror.git] / iolanguage / iolanguage.install
blob7b2a4d8f84f3f6b3ae3ccf37f1d6657a633a9d19
1 # This is a default template for a post-install scriptlet.  You can
2 # remove any functions you don't need (and this header).
4 # arg 1:  the new package version
5 pre_install() {
6   /bin/true
9 # arg 1:  the new package version
10 post_install() {
11   /sbin/depmod -aq
12   echo "********"
13   echo "*"
14   echo "*  The Io documentation can be found in:"
15   echo "*"
16   echo "*         /usr/share/doc/io"
17   echo "*"
18   echo "*  Io samples can be found in:"
19   echo "*"
20   echo "*         /usr/share/io/samples"
21   echo "*"
22   echo "********"
23   echo
24   /bin/true
27 # arg 1:  the new package version
28 # arg 2:  the old package version
29 pre_upgrade() {
30   /bin/true
33 # arg 1:  the new package version
34 # arg 2:  the old package version
35 post_upgrade() {
36   /bin/true
39 # arg 1:  the old package version
40 pre_remove() {
41   /bin/true
44 # arg 1:  the old package version
45 post_remove() {
46   /bin/true
49 op=$1
50 shift
51 $op $*