blob: e02ea809c15265129622b2b8120da35f44516c33 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
 |