mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
32 lines
695 B
Plaintext
32 lines
695 B
Plaintext
infodir=/usr/share/info
|
|
filelist=(lilypond-changes
|
|
lilypond-contributor
|
|
lilypond-essay
|
|
lilypond-extending
|
|
lilypond-internals
|
|
lilypond-learning
|
|
lilypond-notation
|
|
lilypond-usage
|
|
lilypond-web
|
|
music-glossary)
|
|
|
|
post_install() {
|
|
[ -x usr/bin/install-info ] || return 0
|
|
for file in ${filelist[@]}; do
|
|
install-info $infodir/$file.info $infodir/dir 2> /dev/null
|
|
done
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
[ -x usr/bin/install-info ] || return 0
|
|
for file in ${filelist[@]}; do
|
|
install-info --delete $infodir/$file.info $infodir/dir 2> /dev/null
|
|
done
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|