We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
brew audit --strict
1 parent 4e5b293 commit 4c9e710Copy full SHA for 4c9e710
Formula/lfortran.rb
@@ -13,8 +13,8 @@ class Lfortran < Formula
13
depends_on "cmake" => :build
14
depends_on "ninja" => :build
15
depends_on "llvm"
16
- depends_on "zlib"
17
depends_on "z3"
+ depends_on "zlib"
18
19
def install
20
cmake_args = std_cmake_args
@@ -27,13 +27,13 @@ def install
27
end
28
29
test do
30
- system "bin/lfortran", "--version"
+ system bin/"lfortran", "--version"
31
(testpath/"hello.f90").write <<~EOS
32
program hello
33
print *, "Hello, World!"
34
35
EOS
36
- system "bin/lfortran", testpath/"hello.f90", "-o", testpath/"hello"
+ system bin/"lfortran", testpath/"hello.f90", "-o", testpath/"hello"
37
assert_path_exists testpath/"hello"
38
system testpath/"hello"
39
0 commit comments