forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asl.rb
69 lines (58 loc) · 2.28 KB
/
asl.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
class Asl < Formula
desc "The AMPL modeling language solver library"
homepage "http://www.ampl.com"
url "https://github.com/ampl/mp/archive/3.1.0.tar.gz"
sha256 "587c1a88f4c8f57bef95b58a8586956145417c8039f59b1758365ccc5a309ae9"
bottle do
cellar :any
sha256 "871a2da89b0e728feccfaa4334145f37a39b29a02dbfc6fd7a81f7d993979acb" => :el_capitan
sha256 "253f89694d8eace41ae1705415629f0b1d7e2a9b0d124472c5530fe2385f83d7" => :yosemite
sha256 "4cdd2255de6dc86dd59068558dbd492823ef9bb6025bf27ff19014a3df89f6a1" => :mavericks
end
option "with-matlab", "Build MEX files for use with Matlab"
option "with-mex-path=", "Path to MEX executable, e.g., /path/to/MATLAB.app/bin/mex (default: mex)"
option "without-test", "Skip build-time tests (not recommended)"
depends_on "cmake" => :build
depends_on "doxygen" => :optional
resource "miniampl" do
url "https://github.com/dpo/miniampl/archive/v1.0.tar.gz"
sha256 "b836dbf1208426f4bd93d6d79d632c6f5619054279ac33453825e036a915c675"
end
def install
cmake_args = ["-DCMAKE_INSTALL_PREFIX=#{prefix}", "-DCMAKE_BUILD_TYPE=None",
"-DCMAKE_FIND_FRAMEWORK=LAST", "-DCMAKE_VERBOSE_MAKEFILE=ON", "-Wno-dev",
"-DBUILD_SHARED_LIBS=True"]
cmake_args << ("-DMATLAB_MEX=" + (ARGV.value("with-mex-path") || "mex")) if build.with? "matlab"
system "cmake", ".", *cmake_args
system "make", "all"
system "make", "test" if build.with? "test"
system "make", "install"
mkdir libexec
mv bin, libexec/"bin"
if build.with? "matlab"
mkdir_p (pkgshare/"matlab")
mv Dir["#{libexec}/bin/*.mexmaci64"], (pkgshare/"matlab")
end
resource("miniampl").stage do
system "make", "SHELL=/bin/bash", "CXX=#{ENV["CC"]} -std=c99", "LIBAMPL_DIR=#{prefix}", "LIBS=-L$(LIBAMPL_DIR)/lib -lasl -lm -ldl"
bin.install "bin/miniampl"
(pkgshare/"example").install "Makefile", "README.rst", "src", "examples"
end
end
def caveats
s = ""
if build.with? "matlab"
s += <<-EOS.undent
Matlab interfaces have been installed to
#{opt_pkgshare}/matlab
EOS
end
s
end
test do
cp Dir["#{opt_pkgshare}/example/examples/*"], testpath
cd testpath do
system "#{opt_bin}/miniampl", "wb", "showname=1", "showgrad=1"
end
end
end