blob: 3fd9920978f2c517b61b8b65c9cb82679bfde40f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
cd /usr/share/info
install-info stumpwm.info dir
}
post_upgrade() {
post_install
}
pre_remove() {
cd /usr/share/info
install-info --remove stumpwm.info dir
}
|