Mercurial > sdl-ios-xcode
comparison Xcode/uninstall.csh @ 2207:d63e9f5944ae
Unpacked project archives to get individual file history in subversion
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 21 Jul 2007 17:09:01 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2206:ca7d2227d630 | 2207:d63e9f5944ae |
---|---|
1 #!/bin/csh | |
2 | |
3 ### | |
4 ## This script removes the Developer SDL package | |
5 ### | |
6 | |
7 setenv HOME_DIR ~ | |
8 | |
9 sudo -v -p "Enter administrator password to remove SDL: " | |
10 | |
11 sudo rm -rf "$HOME_DIR/Library/Frameworks/SDL.framework" | |
12 | |
13 # will only remove the Frameworks dir if empty (since we put it there) | |
14 sudo rmdir "$HOME_DIR/Library/Frameworks" | |
15 | |
16 sudo rm -r "$HOME_DIR/Readme SDL Developer.txt" | |
17 sudo rm -r "/Developer/Documentation/SDL" | |
18 sudo rm -r "/Developer/Documentation/ManPages/man3/SDL"* | |
19 sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Application" | |
20 sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Cocoa Application" | |
21 sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Custom Cocoa Application" | |
22 sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL OpenGL Application" | |
23 sudo rm -r "/Developer/ProjectBuilder Extras/Target Templates/SDL" | |
24 sudo rm -r "/Library/Receipts/SDL-devel.pkg" | |
25 | |
26 # rebuild apropos database | |
27 sudo /usr/libexec/makewhatis | |
28 | |
29 unsetenv HOME_DIR | |
30 | |
31 | |
32 |