7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
14 lines
297 B
Ruby
14 lines
297 B
Ruby
require 'formula'
|
|
|
|
class Repl < Formula
|
|
url 'http://github.com/defunkt/repl/tarball/v0.2.1'
|
|
homepage 'http://github.com/defunkt/repl'
|
|
md5 '5b9d43038f1b561bd3215a01ee3cb766'
|
|
|
|
depends_on 'rlwrap' => :optional
|
|
|
|
def install
|
|
bin.install 'bin/repl'
|
|
man1.install 'man/repl.1'
|
|
end
|
|
end
|