homebrew-core/Formula/cproto.rb

31 lines
1.2 KiB
Ruby
Raw Normal View History

2014-10-01 07:21:16 +00:00
class Cproto < Formula
desc "Generate function prototypes for functions in input files"
2014-10-01 07:21:16 +00:00
homepage "http://invisible-island.net/cproto"
url "ftp://invisible-island.net/cproto/cproto-4.7m.tgz"
mirror "https://mirrors.kernel.org/debian/pool/main/c/cproto/cproto_4.7m.orig.tar.gz"
sha256 "4b482e80f1b492e94f8dcda74d25a7bd0381c870eb500c18e7970ceacdc07c89"
2014-10-01 07:21:16 +00:00
bottle do
2016-02-23 20:03:11 +00:00
cellar :any_skip_relocation
2016-09-28 21:31:50 +00:00
sha256 "4dcee9160c276855b7bd94235dc15e4d153c161b4f81f8a1e041fda8da5b4cc7" => :sierra
2016-02-23 20:03:11 +00:00
sha256 "21d0972269ad52cd7098b921f2500bb8bf827fabe1e0718c24fdfd2d844b7f7e" => :el_capitan
2015-08-13 06:17:46 +00:00
sha256 "4bd2276c002322ce4d28030d60c0858e1efd4311e0f9de5460917cc5b70bc362" => :yosemite
sha256 "a73eaa28daa6281fc987fb22b2bb50bd9962f4a4d4857e7371b8edf605822ca7" => :mavericks
sha256 "8eedeacb18a2f3316171a4646f2a7cd2ec993005fd3a930072fbbc9fbd76c598" => :mountain_lion
end
2014-10-01 07:21:16 +00:00
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
(testpath/"woot.c").write("int woot() {\n}")
assert_match(/int woot.void.;/, shell_output("#{bin}/cproto woot.c"))
2014-10-01 07:21:16 +00:00
end
end