Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
executable file
·
32 lines (21 loc) · 1.03 KB

uninstall.csh

File metadata and controls

executable file
·
32 lines (21 loc) · 1.03 KB
 
Jun 22, 2011
Jun 22, 2011
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/csh
###
## This script removes the Developer SDL package
###
setenv HOME_DIR ~
sudo -v -p "Enter administrator password to remove SDL: "
sudo rm -rf "$HOME_DIR/Library/Frameworks/SDL.framework"
# will only remove the Frameworks dir if empty (since we put it there)
sudo rmdir "$HOME_DIR/Library/Frameworks"
sudo rm -r "$HOME_DIR/Readme SDL Developer.txt"
sudo rm -r "/Developer/Documentation/SDL"
sudo rm -r "/Developer/Documentation/ManPages/man3/SDL"*
sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Application"
sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Cocoa Application"
sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Custom Cocoa Application"
sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL OpenGL Application"
sudo rm -r "/Developer/ProjectBuilder Extras/Target Templates/SDL"
sudo rm -r "/Library/Receipts/SDL-devel.pkg"
# rebuild apropos database
sudo /usr/libexec/makewhatis
unsetenv HOME_DIR