aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Höppner2010-11-23 17:24:53 +0100
committerDavid Höppner2010-11-23 17:27:10 +0100
commitc6e1c77f5ed332cba8292646858ecb2869979ffa (patch)
treeb17cb58821911eb24dc5341323e957a0c644d3df
parent7614d127b6987ecf69d546a0d5c496c22af1a23e (diff)
downloadhomebrew-c6e1c77f5ed332cba8292646858ecb2869979ffa.tar.bz2
New formula bashish
Bashish is a theme enviroment for text terminals. It can change colors, font, transparency and background image on a per-application basis. Additionally Bashish supports prompt changing on common shells such as bash, zsh and tcsh.
-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