pre_remove() {

if [ "pacman" != "pacman" ] && [ "$1" != "remove" ]; then
    exit 0
fi

echo "Deleting *.pyc..."
find /data/data/com.termux/files/usr/opt/pypy/lib_pypy/_tkinter/ | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf

exit 0
}
