mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
14 lines
240 B
Plaintext
14 lines
240 B
Plaintext
infodir=/usr/share/info
|
|
|
|
post_install() {
|
|
install-info $infodir/gnuchess.info.gz $infodir/dir 2> /dev/null
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
pre_remove() {
|
|
install-info --delete $infodir/gnuchess.info.gz $infodir/dir 2> /dev/null
|
|
}
|