78 lines
2.5 KiB
Ruby
78 lines
2.5 KiB
Ruby
class GnuCobol < Formula
|
|
desc "Implements much of the COBOL 85 and COBOL 2002 standards"
|
|
homepage "http://www.opencobol.org/"
|
|
revision 3
|
|
|
|
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 "d5bc16ae030b10d2e70b63689f76a81bb892d6abeb34da7016c854faaf3d7b1b" => :sierra
|
|
sha256 "a131417f7ad9681d3f3d52e4cb7be7b2b088690c3abada3ce7a4dcb622297939" => :el_capitan
|
|
sha256 "e9f7cf55043f5f2ec64c4d057f96c8e0803866f0fe2bdf351ec0187543bcb518" => :yosemite
|
|
sha256 "24d59407e2d5086b2737045bd3883a7b3b9f7f99f6b48b44ac49f751c256aa72" => :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
|