mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
204 B
Text
23 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
|
|
}
|