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