Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tregusti/babushka-deps
https://github.com/tregusti/babushka-deps
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tregusti/babushka-deps
- Owner: tregusti
- Created: 2013-04-02T18:43:35.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-12T09:06:42.000Z (almost 11 years ago)
- Last Synced: 2024-10-11T13:38:19.309Z (about 1 month ago)
- Language: Ruby
- Size: 219 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# babushka-deps
My custom dependencies for Babushka.
## Installation
0. You need to be admin on the machine.
1. Check if you have a `/usr/local` directory on the target computer:```bash
file -b /usr/local
```
If it doesn't say `directory` you don't have it, just continue to step 2.
But if it does, ensure you have write access to it without sudo. One solution could be:
```bash
sudo chown -R :staff /usr/local
sudo chmod -R 775 /usr/local
```
2. Install babushka:
```bash
sh -c "`curl https://babushka.me/up`"
```
This will surely fail... Several times in fact.
* It fails since it can't write to `/usr/local/bin`:
```bash
sudo chown -R :staff /usr/local
sudo chmod -R 775 /usr/local
```
* It fails with `There are local changes in /usr/local/babushka`. Easiest way out:
```bash
sudo rm -rf /usr/local/babushka
sh -c "`curl https://babushka.me/up`"
```
For latest information, see the [official docs][1].
3. Babushka itself doesn't need any compiler, however more or less anything else you use babushka to does, including the machine configurations in the dep repo. For that you need to install Command Line Tools from Apple.
1. From within Xcode. Xcode > Preferences > Downloads
2. By direct download from [Apple][2] (requires a free developer login).4. Optionally install a machine config:
```bash
babushka tregusti:mimer
# or
babushka tregusti:fenrir
```[1]: http://babushka.me/installing
[2]: https://developer.apple.com/downloads