opnsense-ports/sysutils/pacman/files/pkg-deinstall.in
Franco Fichtner a737ce6b05 */*: sync previously available, but unused ports
Taken from: FreeBSD
2015-04-22 06:45:04 +02:00

19 lines
432 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
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