Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/szhu/install-standalone-xcode-tools
Install Standalone Developer Tools from Xcode 3.2.6
https://github.com/szhu/install-standalone-xcode-tools
Last synced: about 1 month ago
JSON representation
Install Standalone Developer Tools from Xcode 3.2.6
- Host: GitHub
- URL: https://github.com/szhu/install-standalone-xcode-tools
- Owner: szhu
- Created: 2016-12-31T05:43:35.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-02T13:40:44.000Z (almost 8 years ago)
- Last Synced: 2024-04-11T15:52:51.919Z (9 months ago)
- Language: Shell
- Homepage:
- Size: 2.93 KB
- Stars: 20
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Install Standalone Developer Tools from Xcode 3.2.6
===================================================Starting with Xcode 4, Apple started distributing developer tools like FileMerge
inside the Xcode app; you must download Xcode from the Mac App Store to install
these tools. This is inconvenient for developers who do not need Xcode:- Xcode takes a long time to download.
- Xcode takes up a lot of space, since it includes a few iOS boot images.
- Merely installing Xcode will cause the default "Open With:" file associations
for many scripts to be changed to Xcode, and the associate for each type of
script must be changed back manually.Furthermore, Property List Editor is now part of Xcode and is no longer its own
app. Xcode's integrated property list editor has more features, but Xcode takes
a long time to start up and uses a lot of memory. Standalone Property List
Editor takes less than a second to start up.Fortunately, the standalone developer tools included with Xcode 3.2.6 still work
up to Mac OS 10.11, and some of them (unfortunately, not Property List Editor)
still work in 10.12. This repo provides an easy way to install these tools
without installing the rest of the Xcode package.To install the developer tools, first go to
[https://developer.apple.com/download/more/](https://developer.apple.com/download/more/).
Log in with your Apple ID and download "Xcode 3.2.6 and iOS SDK 4.3 for Snow
Leopard".Then, to install for the current user, to `~/Developer`:
```sh
curl -fsSL https://goo.gl/RBK09o | /bin/bash
```Or, to install for all users, to `/Developer`, run with `sudo`:
```sh
curl -fsSL https://goo.gl/RBK09o | /usr/bin/sudo /bin/bash
```To uninstall, just move `/Developer` or `~/Developer` to the trash. The
installer does not install files anywhere else.That's all. Enjoy! -[@szhu](https://github.com/szhu)