mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
05ebc14392
fixes #1013
13 lines
239 B
Text
13 lines
239 B
Text
infodir=/usr/share/info
|
|
|
|
post_install() {
|
|
install-info $infodir/netcat.info.gz $infodir/dir 2> /dev/null
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
install-info --delete $infodir/netcat.info.gz $infodir/dir 2> /dev/null
|
|
}
|