homebrew-core/Formula/bashish.rb
2015-06-05 14:47:57 +01:00

18 lines
453 B
Ruby

class Bashish < Formula
desc "Theme environment for text terminals"
homepage "http://bashish.sourceforge.net/"
url "https://downloads.sourceforge.net/project/bashish/bashish/2.2.4/bashish-2.2.4.tar.gz"
sha1 "532ed2a1c1bacafb459c2c7dedf720e9047bd716"
depends_on "dialog"
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make", "install"
end
test do
system "#{bin}/bashish", "list"
end
end