mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
28 lines
495 B
Text
28 lines
495 B
Text
pre_install() {
|
|
echo "-- Edit config.h in PKGBUILD's directory (generally /var/abs/community/x11/dwm/)"
|
|
echo "-- and rebuild package if you want to change settings."
|
|
/bin/true
|
|
}
|
|
|
|
post_install() {
|
|
/bin/true
|
|
}
|
|
|
|
pre_upgrade() {
|
|
echo "-- Edit config.h in PKGBUILD's directory (generally /var/abs/community/x11/dwm/)"
|
|
echo "-- and rebuild package if you want to change settings."
|
|
/bin/true
|
|
}
|
|
|
|
post_upgrade() {
|
|
/bin/true
|
|
}
|
|
|
|
pre_remove() {
|
|
/bin/true
|
|
}
|
|
|
|
post_remove() {
|
|
/bin/true
|
|
}
|
|
|