mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
14 lines
180 B
Text
14 lines
180 B
Text
|
post_upgrade() {
|
||
|
mkdir -p /usr/var/log/yaws
|
||
|
}
|
||
|
|
||
|
post_install() {
|
||
|
post_upgrade
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
rmdir --ignore-fail-on-non-empty /usr/var/log/yaws
|
||
|
}
|
||
|
|
||
|
# vim:set ts=2 sw=2 et:
|