blob: 2601ab8af107600a75953f144d2efd55faf15e56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|