[btls] Add "desktop" ARM Linux configurations (for IoT, mostly) (#4875)
[mono-project.git] / packaging / MacSDK / packaging / uninstallMono.sh
blob9e88ad1a8bc315f304e6c385f1efd169613755db
1 #!/bin/sh -x
3 #This script removes Mono from an OS X System. It must be run as root
5 rm -r /Library/Frameworks/Mono.framework
7 # In 10.6+ the receipts are stored here
8 rm /var/db/receipts/com.ximian.mono*
10 for dir in /usr/local/bin; do
11 (cd ${dir};
12 for i in `ls -al | grep /Library/Frameworks/Mono.framework/ | awk '{print $9}'`; do
13 rm ${i}
14 done);
15 done