b7d8b3ba13
Update the GNU hello formula to version 2.10 Closes Homebrew/homebrew#34512. Signed-off-by: Tim D. Smith <git@tim-smith.us>
18 lines
536 B
Ruby
18 lines
536 B
Ruby
require "formula"
|
|
|
|
class Hello < Formula
|
|
homepage "http://www.gnu.org/software/hello/"
|
|
url "http://ftpmirror.gnu.org/hello/hello-2.10.tar.gz"
|
|
sha1 "f7bebf6f9c62a2295e889f66e05ce9bfaed9ace3"
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
test do
|
|
system "#{bin}/hello", "--next-generation", "--greeting=brew"
|
|
end
|
|
end
|