homebrew-core/Formula/bashish.rb
Baptiste Fontaine b3320ca91e bashish: test added
Closes Homebrew/homebrew#35544.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-04 14:49:46 +00:00

17 lines
407 B
Ruby

class Bashish < Formula
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