aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/shellinabox.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/shellinabox.rb b/Library/Formula/shellinabox.rb
new file mode 100644
index 000000000..e02ea809c
--- /dev/null
+++ b/Library/Formula/shellinabox.rb
@@ -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