diff options
| author | Alex Kahn | 2009-12-13 15:34:19 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2010-01-30 00:37:09 -0800 |
| commit | fcf60e54fc4baaed80f0b4d85fdf33716433e1e7 (patch) | |
| tree | af395665e4753f151bbdec18d44eb48d41d14739 /Library/Formula/repl.rb | |
| parent | 5fd7b662aec59bd35f438b207aeb7e98a23a83e9 (diff) | |
| download | homebrew-fcf60e54fc4baaed80f0b4d85fdf33716433e1e7.tar.bz2 | |
Add formula for repl (http://github.com/defunkt/repl).
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/repl.rb')
| -rw-r--r-- | Library/Formula/repl.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/repl.rb b/Library/Formula/repl.rb new file mode 100644 index 000000000..5b109322b --- /dev/null +++ b/Library/Formula/repl.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Repl < Formula + head 'git://github.com/defunkt/repl.git', :tag => 'v0.1.0' + homepage 'http://github.com/defunkt/repl' + + def initialize(*args) + super + @version = '0.1.0' + end + + def install + bin.install 'bin/repl' + man1.install 'man/repl.1' + end +end |
