8b275c916a
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
299 B
Ruby
14 lines
299 B
Ruby
require 'formula'
|
|
|
|
class Repl < Formula
|
|
url 'https://github.com/defunkt/repl/tarball/v0.2.1'
|
|
homepage 'https://github.com/defunkt/repl'
|
|
md5 '5b9d43038f1b561bd3215a01ee3cb766'
|
|
|
|
depends_on 'rlwrap' => :optional
|
|
|
|
def install
|
|
bin.install 'bin/repl'
|
|
man1.install 'man/repl.1'
|
|
end
|
|
end
|