b66f5ad161
`needs` allows formulae to specify dependencies on cross-compiler dependencies, allowing multiple failures to be specified in a single statement. For instance, `needs :cxx11` adds seven compiler failures. Closes Homebrew/homebrew#22912.
44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
require 'formula'
|
|
|
|
class Gringo < Formula
|
|
homepage 'http://potassco.sourceforge.net/'
|
|
url 'https://downloads.sourceforge.net/project/potassco/gringo/4.3.0/gringo-4.3.0-source.tar.gz'
|
|
sha1 'dccb55c2c690ebe1f6599a43b6072bfb50eb5e83'
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "1dc4996fd4469e987a5aab9c205cf157c3460c01" => :mavericks
|
|
end
|
|
|
|
depends_on 're2c' => :build
|
|
depends_on 'scons' => :build
|
|
depends_on 'bison' => :build
|
|
|
|
needs :cxx11
|
|
|
|
# Fixes missing include; fixed upstream:
|
|
# http://sourceforge.net/p/potassco/code/8274/tree//trunk/gringo/app/gringo/main.cc?diff=5083e8f9bfc09e133b25ad84:8273
|
|
patch :p3, :DATA
|
|
|
|
def install
|
|
# Allow pre-10.9 clangs to build in C++11 mode
|
|
ENV.libcxx
|
|
inreplace "SConstruct",
|
|
"env['CXX'] = 'g++'",
|
|
"env['CXX'] = '#{ENV['CXX']}'"
|
|
scons "--build-dir=release", "gringo", "clingo"
|
|
bin.install "build/release/gringo", "build/release/clingo"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
--- a/trunk/gringo/app/gringo/main.cc
|
|
+++ b/trunk/gringo/app/gringo/main.cc
|
|
@@ -33,6 +33,7 @@
|
|
#include <gringo/scripts.hh>
|
|
#include <gringo/version.hh>
|
|
#include <gringo/control.hh>
|
|
+#include <climits>
|
|
#include <iostream>
|
|
#include <stdexcept>
|
|
#include <program_opts/application.h>
|