summaryrefslogtreecommitdiff
path: root/pcr/quack/quack.install
blob: f92194ee69f0f1001de0b5a2560588679eae2ce3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
### quack.install:
post_install () {
cat << EOF
==> Put this in your $HOME/.emacs file to enable quack

(require 'quack)

EOF
}

post_upgrade () {
	post_install $1
}

op=$1
shift
$op $*
########################