class GnuCobol < Formula desc "Implements much of the COBOL 85 and COBOL 2002 standards" homepage "http://www.opencobol.org/" revision 2 stable do url "https://downloads.sourceforge.net/project/open-cobol/gnu-cobol/1.1/gnu-cobol-1.1.tar.gz" sha256 "5cd6c99b2b1c82fd0c8fffbb350aaf255d484cde43cf5d9b92de1379343b3d7e" fails_with :clang do cause <<-EOS.undent Building with Clang configures GNU-COBOL to use Clang as its compiler, which causes subsequent GNU-COBOL-based builds to fail. EOS end end bottle do sha256 "012a52adf5bdb3f137afaadafb315bf966f037e1620fee022d98bab3541531cd" => :el_capitan sha256 "62b99b26f9a6e83330ff6b0fc4834c578fecef83d4b49e418a4435b9d2e766d5" => :yosemite sha256 "044fad7cd09f88cdda0c9e84f5af6c45c854749e69a0b481fc6e3868641595f9" => :mavericks end devel do version "2.0_nightly_r658" url "https://downloads.sourceforge.net/project/open-cobol/gnu-cobol/2.0/gnu-cobol-2.0_nightly_r658.tar.gz" sha256 "0a210d10624a53904871526afd69a6bef9feab40c2766386f74477598a313ae8" end depends_on "autoconf" => :build depends_on "automake" => :build depends_on "berkeley-db" depends_on "gmp" depends_on "gcc" conflicts_with "open-cobol", :because => "both install `cob-config`, `cobc` and `cobcrun` binaries" def install # both environment variables are needed to be set # the cobol compiler takes these variables for calling cc during its run # if the paths to gmp and bdb are not provided, the run of cobc fails gmp = Formula["gmp"] bdb = Formula["berkeley-db"] ENV.append "CPPFLAGS", "-I#{gmp.opt_include} -I#{bdb.opt_include}" ENV.append "LDFLAGS", "-L#{gmp.opt_lib} -L#{bdb.opt_lib}" args = ["--prefix=#{prefix}", "--infodir=#{info}"] args << "--with-libiconv-prefix=/usr" args << "--with-libintl-prefix=/usr" if build.stable? system "aclocal" # fix referencing of libintl and libiconv for ld # bug report can be found here: https://sourceforge.net/p/open-cobol/bugs/93/ inreplace "configure", "-R$found_dir", "-L$found_dir" args << "--with-cc=#{ENV.cc}" end system "./configure", *args system "make", "install" end test do (testpath/"hello.cob").write <<-EOS IDENTIFICATION DIVISION. PROGRAM-ID. hello. PROCEDURE DIVISION. DISPLAY "Hello World!". STOP RUN. EOS system "#{bin}/cobc", "-x", testpath/"hello.cob" system testpath/"hello" end end