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

6
tiv.rb
View file

@ -9,6 +9,12 @@ class Tiv < Formula
def install
cd "src/main/cpp" do
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"
end