diff options
| author | Mike McQuaid | 2011-06-21 22:28:29 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2011-06-21 22:28:54 +0100 |
| commit | cf1fee1fc82e246d14e41701bc4a15e5beb8be08 (patch) | |
| tree | d7fded5cce8eecbe38802b7652f4687e2f040963 /Library/Homebrew | |
| parent | baf1d0003a8097f73fdd177b93befe8db1544713 (diff) | |
| download | homebrew-cf1fee1fc82e246d14e41701bc4a15e5beb8be08.tar.bz2 | |
Add stub options method.
Diffstat (limited to 'Library/Homebrew')
| -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. |
