homebrew-core/Formula/bashish.rb
David Höppner cc0cb8a3cf 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.
2010-11-23 17:27:10 +01:00

15 lines
359 B
Ruby

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