aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorGuy Rozendorn2013-08-22 12:44:04 +0300
committerAdam Vandenberg2013-08-30 10:26:28 -0700
commit647e6877137d016aa8ded422c8041828f38b3f0a (patch)
treed8b090b41660ab8e893a445239afdf0482a8368b /Library/Formula
parentdbe21b42a2ad48546a05ce5c23f495fd10fc479a (diff)
downloadhomebrew-647e6877137d016aa8ded422c8041828f38b3f0a.tar.bz2
shellinabox 2.14
Closes #22060. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
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