mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
204 B
Text
24 lines
204 B
Text
|
pre_install() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_install() {
|
||
|
/sbin/depmod -a
|
||
|
}
|
||
|
|
||
|
pre_upgrade() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
/sbin/depmod -a
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
/sbin/depmod -a
|
||
|
}
|