mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
osx: update uninstall qucs pkg script
This commit is contained in:
parent
8f77af6175
commit
a8b75f434d
@ -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.*
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user