mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
3793d28dee
Approved by: nork (mentor)
9 lines
197 B
Bash
9 lines
197 B
Bash
#!/bin/sh
|
|
|
|
if test "$2" = "POST-DEINSTALL"; then
|
|
FILE=${PKG_PREFIX}/lib/mozilla/chrome/installed-chrome.txt
|
|
cp ${FILE} ${FILE}.orig
|
|
cat ${FILE}.orig | grep -v enigmail > ${FILE}
|
|
rm ${FILE}.orig
|
|
fi
|