blob: 24e8e81ceb143df80c3724d9f1ab8850a597e79b (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | require 'formula'
class Repl < Formula
  homepage 'https://github.com/defunkt/repl'
  url 'https://github.com/defunkt/repl/archive/v1.0.0.tar.gz'
  sha1 'd47d31856a0c474daf54707d1575b45f01ef5cda'
  depends_on 'rlwrap' => :optional
  def install
    bin.install 'bin/repl'
    man1.install 'man/repl.1'
  end
end
 |