blob: 2d600df5be58c098f7aa10b6bc4035fcc8e5b6cf (
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/v1.0.0'
  homepage 'https://github.com/defunkt/repl'
  md5 '755f121d1ae777a0e3c26f837d8fb18a'
  depends_on 'rlwrap' => :optional
  def install
    bin.install 'bin/repl'
    man1.install 'man/repl.1'
  end
end
 |