blob: 8a684997a7f0d39e8102fdf98ab3ad8710d24dc5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
cat << EOF
==> To use keytouch-editor:
You'll need to have either gksu (pacman -S gksu) or kdesu (pacman -S kdebase) installed.
EOF
}
post_upgrade() {
post_install $1
}
|