diff options
Diffstat (limited to 'Library/Formula/lua.rb')
| -rw-r--r-- | Library/Formula/lua.rb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Library/Formula/lua.rb b/Library/Formula/lua.rb index 75e2a3818..0c7706656 100644 --- a/Library/Formula/lua.rb +++ b/Library/Formula/lua.rb @@ -14,9 +14,18 @@ class Lua < Formula # Be sure to build a dylib, or else runtime modules will pull in another static copy of liblua = crashy # See: https://github.com/mxcl/homebrew/pull/5043 def patches - DATA + # completion provided by advanced readline power patch from + # http://lua-users.org/wiki/LuaPowerPatches + if ARGV.include? '--completion' + [DATA, 'http://luajit.org/patches/lua-5.1.4-advanced_readline.patch'] + else + DATA + end end + def options + [['--completion', 'Enables advanced readline support']] + end def install # Apply patch-level 2 |
