mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:34:36 +08:00
16 lines
335 B
Plaintext
16 lines
335 B
Plaintext
infodir=usr/share/info
|
|
file=mjpeg-howto.info
|
|
|
|
post_install() {
|
|
[[ -x usr/bin/install-info ]] || return 0
|
|
install-info $infodir/$file.gz $infodir/dir 2> /dev/null
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
[[ -x usr/bin/install-info ]] || return 0
|
|
install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
|
|
} |