mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
549 B
Text
21 lines
549 B
Text
post_install() {
|
|
xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
|
|
if [ ! -f /etc/ssl/certs/java/cacerts ]; then
|
|
/usr/sbin/init-jks-keystore
|
|
fi
|
|
echo "when you use a non-reparenting window manager"
|
|
echo "set _JAVA_AWT_WM_NONREPARENTING=1 in"
|
|
echo "/etc/profile.d/openjdk6.sh"
|
|
}
|
|
|
|
post_upgrade() {
|
|
xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
|
|
if [ ! -f /etc/ssl/certs/java/cacerts ]; then
|
|
/usr/sbin/init-jks-keystore
|
|
fi
|
|
}
|
|
|
|
|
|
post_remove() {
|
|
xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
|
|
}
|