29 lines
1.3 KiB
Ruby
29 lines
1.3 KiB
Ruby
class Hello < Formula
|
|
desc "Program providing model for GNU coding standards and practices"
|
|
homepage "https://www.gnu.org/software/hello/"
|
|
url "https://ftp.gnu.org/gnu/hello/hello-2.10.tar.gz"
|
|
sha256 "31e066137a962676e89f69d1b65382de95a7ef7d914b8cb956f41ea72e0f516b"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "f9d6285eafa4317c5a653bd02832bdabe4df9f6b18702274d551b28cc45d8b23" => :mojave
|
|
sha256 "1b66790d42664fe95d44f56d2c82db7ea2ce03e01bda0c8e9932f3b768342c7b" => :high_sierra
|
|
sha256 "9691f91e7c6897d525b76f5910144e0ed0adcb8bd8f7bb155f29fd431d8ff431" => :sierra
|
|
sha256 "54ac46b692fcca2abe77aeeca41976172a2dc24a6762f84a47fabcaba336df89" => :el_capitan
|
|
sha256 "f81a305402e8f8b6cf11a17dac81f604b6f48d940909886a6733cf4f6a64c05f" => :yosemite
|
|
sha256 "c80495cb6d1ad8f2c3a64c22c9dcee9d0117ca25fa6426f20a6acca275cd6c56" => :mavericks
|
|
end
|
|
|
|
conflicts_with "camlistore", :because => "both install `hello` binaries"
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
test do
|
|
assert_equal "brew", shell_output("#{bin}/hello --greeting=brew").chomp
|
|
end
|
|
end
|