updated on Wed Jan 25 08:34:36 UTC 2012
[aur-mirror.git] / ntlmaps / ntlmaps.install
bloba12a48acd5347b5ed5944ff025ffcd484e7b9461
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   PYTHONVER=$(python2 -c 'import sys;print(sys.version[0:3])')
12   echo "Byte compiling python modules..."
13   python2 /usr/lib/python$PYTHONVER/compileall.py >/dev/null 2>&1
14   python2 -O /usr/lib/python$PYTHONVER/compileall.py >/dev/null 2>&1
17 # arg 1:  the new package version
18 # arg 2:  the old package version
19 pre_upgrade() {
20   /bin/true
23 # arg 1:  the new package version
24 # arg 2:  the old package version
25 post_upgrade() {
26   PYTHONVER=$(python2 -c 'import sys;print(sys.version[0:3])')
27   echo "Byte compiling python modules..."
28   python2 /usr/lib/python$PYTHONVER/compileall.py >/dev/null 2>&1
29   python2 -O /usr/lib/python$PYTHONVER/compileall.py >/dev/null 2>&1
32 # arg 1:  the old package version
33 pre_remove() {
34   /bin/true
37 # arg 1:  the old package version
38 post_remove() {
39   /bin/true
42 op=$1
43 shift
44 $op $*