mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
14 lines
273 B
Text
14 lines
273 B
Text
info_dir=/usr/share/info
|
|
info_file=indent.info.gz
|
|
|
|
post_install() {
|
|
install-info ${info_dir}/$info_file ${info_dir}/dir 2> /dev/null
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
install-info --delete ${info_dir}/$info_file ${info_dir}/dir 2> /dev/null
|
|
}
|