Dominyk Tiller d6ebdf1e62
python: handle env filtering on pth check
Since ENV filtering became the default this has been chucking
erroneous warnings from both `brew doctor` and things like `brew install pygobject`
about needing to run:
```
echo 'import site; site.addsitedir("/usr/local/lib/python2.7/site-packages")' >> /Users/xyz/Library/Python/2.7/lib/python/site-packages/homebrew.pth
```
even though I had Homebrew's `python` installed.
2017-12-13 06:09:37 +00:00
..
2017-12-11 23:01:37 +01:00
2017-12-03 10:10:54 +01:00
2017-11-30 09:42:14 +00:00
2017-11-18 17:04:54 -08:00
2017-10-24 19:39:40 +02:00
2017-11-05 15:37:57 +00:00
2017-10-18 14:39:09 +02:00
2017-10-26 10:21:46 +10:00
2017-10-18 14:39:09 +02:00
2017-10-18 14:39:09 +02:00
2017-12-02 00:12:21 +01:00
2017-10-24 19:39:40 +02:00
2017-10-18 14:39:09 +02:00
2017-10-18 14:39:09 +02:00
2017-11-17 19:47:58 +00:00
2017-11-05 15:40:46 +00:00
2017-11-19 13:54:46 -08:00
2017-10-24 19:39:40 +02:00
2017-10-18 14:39:09 +02:00
2017-12-02 20:03:38 +00:00
2017-11-05 15:37:57 +00:00
2017-11-17 17:41:58 +00:00
2017-11-05 15:39:43 +00:00

Homebrew's Formula API

This is the (partially) documented public API for Homebrew.

The main class you should look at is the {Formula} class (and classes linked from there). That's the class that's used to create Homebrew formulae (i.e. package descriptions). Assume anything else you stumble upon is private.

You may also find the Formula Cookbook and Ruby Style Guide helpful in creating formulae.

Good luck!