mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:27:14 +08:00
89f5fdf6ea
- added some makedeps - fixed some pkgs - broken pkgs: 7
19 lines
418 B
Plaintext
19 lines
418 B
Plaintext
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() {
|
|
post_install
|
|
}
|
|
|
|
|
|
post_remove() {
|
|
xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
|
|
}
|