updated on Mon Jan 16 00:01:41 UTC 2012
[aur-mirror.git] / scsh / scsh.install
blobf444c1730f31723c3dc54685c9961ce6bb2c5e5e
1 # arg 1: the new package version
2 post_install() {
3   if [ ! "`/bin/grep /usr/bin/scsh etc/shells`" ]; then
4     /bin/echo "updating /etc/shells... done."
5     /bin/sed -i "s|/bin/bash|/bin/bash\n/usr/bin/scsh|" etc/shells
6   fi
9 # arg 1: the new package version
10 # arg 2: the old package version
11 post_upgrade() {
12         post_install $1
15 # arg 1: the old package version
16 pre_remove() {
17   /bin/echo -ne "\nupdating /etc/shells... "
18   /bin/sed -i "s|/usr/bin/scsh|\b|" etc/shells
21 # arg 1: the old package version
22 post_remove() {
23   /bin/true
26 op=$1
27 shift
29 $op $*
30 # vim: ts=2: ft=sh