mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 02:17:15 +08:00
20 lines
325 B
Plaintext
20 lines
325 B
Plaintext
pre_install() {
|
|
local __file="/usr/lib/pkgconfig/mozilla-js.pc"
|
|
if [ -f "${__file}.bak" ]; then
|
|
mv "${__file}.bak" "${__file}"
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
echo
|
|
echo -n "==> Updating desktop and mime database..."
|
|
update-desktop-database -q
|
|
echo "done"
|
|
}
|
|
|
|
post_remove() {
|
|
post_install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|