blob: 4f05ea6b40cffe8ba03ff338a0605a06fd300a06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
case $2 in
POST-DEINSTALL)
if find /var/lib/pacman /var/cache/pacman %%PACMAN_ROOT%% -type f 2>/dev/null | head -1 | grep -q ''; then
echo ""
echo "To completely remove the port, please remove the following"
echo "directories and the content manualy if its no longer needed:"
echo ""
echo " %%PACMAN_ROOT%%"
echo " /var/cache/pacman"
echo " /var/lib/pacman"
echo ""
fi
;;
esac
|