shellinabox 2.14

Closes Homebrew/homebrew#22060.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Guy Rozendorn 2013-08-22 12:44:04 +03:00 committed by Adam Vandenberg
parent 3f878fddc6
commit f063d84fff

17
Formula/shellinabox.rb Normal file
View file

@ -0,0 +1,17 @@
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