2009-12-13 20:34:19 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Repl < Formula
|
2010-01-30 08:40:21 +00:00
|
|
|
url 'http://github.com/defunkt/repl/tarball/v0.2.1'
|
2009-12-13 20:34:19 +00:00
|
|
|
homepage 'http://github.com/defunkt/repl'
|
2010-01-30 08:40:21 +00:00
|
|
|
md5 '5b9d43038f1b561bd3215a01ee3cb766'
|
|
|
|
|
|
|
|
depends_on 'rlwrap' => :optional
|
2009-12-13 20:34:19 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install 'bin/repl'
|
|
|
|
man1.install 'man/repl.1'
|
|
|
|
end
|
|
|
|
end
|