class Spim < Formula desc "MIPS32 simulator" homepage "https://spimsimulator.sourceforge.io/" # No source code tarball exists url "http://svn.code.sf.net/p/spimsimulator/code", :revision => 707 version "9.1.19" head "http://svn.code.sf.net/p/spimsimulator/code/" bottle do sha256 "ed97fd8280e875fd1d20fe79ce6205dfdf9fb454c71b63f1f5b3849a24a4c7a2" => :mojave sha256 "dd734941f466f62278aae0826a7fa05a4a960bed55bde3318a5b3f46810c3175" => :high_sierra sha256 "8a3717f7373bd8b9f4a85b335c321b27597dcd64ee22fc05921e96241458a191" => :sierra sha256 "0b2c254bc2ab638516345e0fe44b29859179c6ec62704fb369e485a645178bbd" => :el_capitan sha256 "1207f278f326747acbb97e272724d72dd467e90b4ef798365206958ccd54957a" => :yosemite end def install bin.mkpath cd "spim" do system "make", "EXCEPTION_DIR=#{share}" system "make", "test" system "make", "install", "BIN_DIR=#{bin}", "EXCEPTION_DIR=#{share}", "MAN_DIR=#{man1}" end end test do assert_match "__start", pipe_output("#{bin}/spim", "print_symbols") end end