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