mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
28 lines
430 B
Text
28 lines
430 B
Text
pre_install() {
|
|
/bin/true
|
|
}
|
|
|
|
post_install() {
|
|
echo "-- Don't forget to install gtk or/and gtk2 packages to enable librcc"
|
|
echo " gui features"
|
|
echo "-- Also you may change /usr/bin/rcc-config symlink to switch between"
|
|
echo " gtk and gtk2 (rcc-gtk-config and rcc-gtk2-config)"
|
|
/bin/true
|
|
}
|
|
|
|
pre_upgrade() {
|
|
/bin/true
|
|
}
|
|
|
|
post_upgrade() {
|
|
/bin/true
|
|
}
|
|
|
|
pre_remove() {
|
|
/bin/true
|
|
}
|
|
|
|
post_remove() {
|
|
/bin/true
|
|
}
|
|
|