blob: 65c809347759a1738a404cb4829d5a8c98501f01 (
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'
  sha1 '1a376273043d7c5193ad688dd9d5ee72329655bd'
  depends_on 'rlwrap' => :optional
  def install
    bin.install 'bin/repl'
    man1.install 'man/repl.1'
  end
end
  |