1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00
freebsd-ports/sysutils/pacman/pkg-deinstall
Dmitry Marakasov 9c9765eb68 - Drop @dirrm* from plist
- Use newer plist practices
2014-09-23 18:56:46 +00:00

19 lines
377 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
case $2 in
POST-DEINSTALL)
if find /var/lib/pacman /var/cache/pacman -type f 2>/dev/null | 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 " /var/cache/pacman"
echo " /var/lib/pacman"
echo ""
fi
;;
esac