aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBenjamin Weber2014-06-13 19:53:18 +0200
committerAdam Vandenberg2014-06-22 17:26:46 -0700
commit547f26eab3a97d2932b6724e6317db88af7b447a (patch)
tree26a9d615911babd5aab3bd28796ef892d2f305df /Library/Formula
parent6cea6b35340b8aa442a93f2fcd7cff7ced966bdc (diff)
downloadhomebrew-547f26eab3a97d2932b6724e6317db88af7b447a.tar.bz2
osh: V6 Thompson Shell Port
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/osh.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/osh.rb b/Library/Formula/osh.rb
new file mode 100644
index 000000000..2842d4605
--- /dev/null
+++ b/Library/Formula/osh.rb
@@ -0,0 +1,12 @@
+require "formula"
+
+class Osh < Formula
+ homepage "http://v6shell.org"
+ head "https://github.com/JNeitzel/v6shell"
+ url "http://v6shell.org/src/osh-20140410.tar.gz"
+ sha1 "73d44e5d04504e6af1ffb6e23763ec7f5a40ae1a"
+
+ def install
+ system "make", "install", "prefix=#{prefix}"
+ end
+end