homebrew-core/Formula/cdecl.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

28 lines
805 B
Ruby

class Cdecl < Formula
desc "Turn English phrases to C or C++ declarations"
homepage "http://cdecl.org/"
url "http://cdecl.org/files/cdecl-blocks-2.5.tar.gz"
sha256 "9ee6402be7e4f5bb5e6ee60c6b9ea3862935bf070e6cecd0ab0842305406f3ac"
def install
# Fix namespace clash with Lion's getline
inreplace "cdecl.c", "getline", "cdecl_getline"
bin.mkpath
man1.mkpath
ENV.append "CFLAGS", "-DBSD -DUSE_READLINE -std=gnu89"
system "make", "CC=#{ENV.cc}",
"CFLAGS=#{ENV.cflags}",
"LIBS=-lreadline",
"BINDIR=#{bin}",
"MANDIR=#{man1}",
"install"
end
test do
assert_equal "declare a as pointer to int",
shell_output("#{bin}/cdecl explain int *a").strip
end
end