11 lines
276 B
Plaintext
11 lines
276 B
Plaintext
|
#!@TERMUX_PREFIX@/bin/sh
|
||
|
|
||
|
if [ "${1}" = "remove" ]; then
|
||
|
if [ -d "@TERMUX_PREFIX@/share/applications" ]; then
|
||
|
rm -f "@TERMUX_PREFIX@/share/applications/mimeinfo.cache"
|
||
|
rmdir --ignore-fail-on-non-empty "@TERMUX_PREFIX@/share/applications"
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
exit 0
|