homebrew-core/Formula/repl.rb
Andrew Janke c8d2d41c1d Change github /tarball/ URLs to /archive/ for formulae L-Z
This takes care of a `brew audit` complaint.

Closes Homebrew/homebrew#18828.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-29 14:59:28 -07:00

14 lines
315 B
Ruby

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