class ScIm < Formula desc "Spreadsheet program for the terminal, using ncurses" homepage "https://github.com/andmarti1424/sc-im" url "https://github.com/andmarti1424/sc-im/archive/v0.7.0.tar.gz" sha256 "87225918cb6f52bbc068ee6b12eaf176c7c55ba9739b29ca08cb9b6699141cad" head "https://github.com/andmarti1424/sc-im.git", :branch => "freeze" bottle do sha256 "275a0a9dbd1a1271119e36b2767a54587aae57a65ee92278e701e0e1236a192c" => :high_sierra sha256 "f346970ef805cec01ae6485365d8fb5002533255c01e81bdd44d072058d00081" => :sierra sha256 "50e8d50e0373ac626ad617057eb1246c779e1e3b05171f4be2aa547c5b8ddf4c" => :el_capitan end depends_on "ncurses" def install cd "src" do system "make", "prefix=#{prefix}" system "make", "prefix=#{prefix}", "install" end end test do input = <<~EOS let A1=1+1 getnum A1 EOS output = pipe_output( "#{bin}/scim --nocurses --quit_afterload 2>/dev/null", input ) assert_equal "2", output.lines.last.chomp end end