freebsd-ports/sysutils/pacman/pkg-deinstall
Dmitry Marakasov ee59afdf39 - Add pacman, Arch linux package manager.
pacman is a utility which manages software packages in Linux. It
uses simple compressed files as a package format, and maintains a
text-based package database (more of a hierarchy), just in case
some hand tweaking is necessary.

pacman does not strive to "do everything." It will add, remove and
upgrade packages in the system, and it will allow you to query the
package database for installed packages, files and owners. It also
attempts to handle dependencies automatically and can download
packages from a remote server.

WWW: https://www.archlinux.org/pacman/
2013-01-25 00:41:19 +00:00

15 lines
245 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
case $2 in
DEINSTALL)
echo ""
echo "To completely remove the port, please remove the following"
echo "directories and the content manualy:"
echo ""
echo "/var/lib/pacman prefix/var/cache/pacman"
echo ""
;;
esac