mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
15 lines
238 B
Text
15 lines
238 B
Text
|
infodir=/usr/share/info
|
||
|
file=gpm.info.gz
|
||
|
|
||
|
post_install() {
|
||
|
install-info $infodir/$file $infodir/dir 2> /dev/null
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
install-info --delete $infodir/$file $infodir/dir 2> /dev/null
|
||
|
}
|