homebrew-core/Formula/dialog.rb

20 lines
763 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Dialog < Formula
desc "Display user-friendly dialog boxes from shell scripts"
homepage "http://invisible-island.net/dialog/"
url "ftp://invisible-island.net/dialog/dialog-1.2-20150528.tgz"
mirror "https://fossies.org/linux/misc/dialog-1.2-20150528.tgz"
sha256 "a8cd7a66bdb41e53a3145cbb0eb370c5ce7300fe0e9ad6d3e8d3b9e16ff16418"
2014-10-22 14:41:51 +00:00
bottle do
2015-06-30 02:48:55 +00:00
cellar :any
sha256 "f1f50b2dc04d66fbff91db59d9e1fecfee3f54d9ec33614015582745e4d6dbd8" => :yosemite
sha256 "fd3feefe57a2bf2f0592e8cc818e4510a71f5ad39989395eb2ec5d24bf8ee93e" => :mavericks
sha256 "6da0c61033ca4eb531f943f12f61dd4e16fd92f6408a1e247494e6af6b22fae4" => :mountain_lion
2014-10-22 14:41:51 +00:00
end
def install
system "./configure", "--prefix=#{prefix}"
system "make", "install-full"
end
end