osx: update uninstall qucs pkg script

This commit is contained in:
Guilherme Brondani Torri 2014-09-01 19:06:23 +02:00
parent 8f77af6175
commit a8b75f434d

View File

@ -31,7 +31,8 @@ for bom in "${packages[@]}"; do
lsbom -f -l -s -pf ${bom} \
| while read i; do
# Remove each file listed in the bom.
file="/usr/local/${i}"
cd /
file="${i}"
if [ -e $file ]; then
echo "removing: ${file}"
rm $file
@ -43,7 +44,33 @@ for bom in "${packages[@]}"; do
done
echo "*** Removing receipts: /var/db/receipts/org.qucs.*"
rm -f /var/db/receipts/org.qucs.*
## remove symlinks if found
# final location
PREFIX='/usr/local/bin'
# list of programs to link into /Applications
PROGS="
qucs.app
qucsattenuator.app
qucsedit.app
qucsfilter.app
qucshelp.app
qucslib.app
qucsrescodes.app
qucstrans.app"
# link programs
for app in $PROGS
do
link=/Applications/$app
if [ -L $link ]; then
rm $link
fi
done
#echo "*** Removing receipts: /var/db/receipts/org.qucs.*"
#rm -f /var/db/receipts/org.qucs.*