mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
268 B
Text
23 lines
268 B
Text
post_install() {
|
|
/bin/true
|
|
}
|
|
|
|
post_upgrade() {
|
|
ldconfig -r .
|
|
PID=`pidof bonobo-activation-server`
|
|
if [ ! -z "${PID}" ]; then
|
|
killall -HUP bonobo-activation-server 2>&1
|
|
fi
|
|
}
|
|
|
|
pre_remove() {
|
|
/bin/true
|
|
}
|
|
|
|
post_remove() {
|
|
/bin/true
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|