diff options
| author | Mike McQuaid | 2011-06-21 22:28:29 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2011-06-21 22:28:54 +0100 |
| commit | bd2fa562c38d5447e4d4a79f1609cfb8c911b55c (patch) | |
| tree | ddf52572afad402aa0aeff3a858497f5d2f78234 /Library | |
| parent | b7dd6f1f7eb803923b52e96ae663f05f6b4676ae (diff) | |
| download | brew-bd2fa562c38d5447e4d4a79f1609cfb8c911b55c.tar.bz2 | |
Add stub options method.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 05de05c1a..851a8f678 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -210,6 +210,9 @@ class Formula # tell the user about any caveats regarding this package, return a string def caveats; nil end + # any e.g. configure options for this package + def options; end + # patches are automatically applied after extracting the tarball # return an array of strings, or if you need a patch level other than -p1 # return a Hash eg. |
