Update tiv.rb

Still needs style checks.
This commit is contained in:
Aaron Liu 2021-07-20 21:43:37 +08:00 committed by Stefan Haustein
parent 380cd0a8c3
commit 224c2d1e30

8
tiv.rb
View file

@ -9,7 +9,13 @@ class Tiv < Formula
def install def install
cd "src/main/cpp" do cd "src/main/cpp" do
system "make" if OS.mac?
system "c++", "-std=c++17", "-Wall", "-fpermissive", "-fexceptions", "-O2",
"-c", "tiv.cpp", "-o", "tiv.o"
system "c++", "tiv.o", "-o", "tiv", "-L/usr/local/opt/gcc/lib/gcc/11/", "-pthread",
"-s"
else
system "make"
bin.install "tiv" bin.install "tiv"
end end
end end