homebrew-core/Formula/shellinabox.rb
Guy Rozendorn f063d84fff shellinabox 2.14
Closes Homebrew/homebrew#22060.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-08-30 10:26:28 -07:00

17 lines
445 B
Ruby

require 'formula'
class Shellinabox < Formula
homepage 'https://code.google.com/p/shellinabox/'
url 'https://shellinabox.googlecode.com/files/shellinabox-2.14.tar.gz'
sha1 '9e01f58c68cb53211b83d0f02e676e0d50deb781'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/shellinaboxd", "--version"
end
end