aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/bashish.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/bashish.rb b/Library/Formula/bashish.rb
new file mode 100644
index 000000000..2a5be6af2
--- /dev/null
+++ b/Library/Formula/bashish.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Bashish <Formula
+ url 'http://freefr.dl.sourceforge.net/project/bashish/bashish/2.2.4/bashish-2.2.4.tar.gz'
+ homepage 'http://bashish.sourceforge.net/'
+ md5 '0661cc0040878e921ac7a31b071d20e0'
+
+ depends_on 'dialog'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make"
+ system "make install"
+ end
+end