SPIM 9.1.9

Closes Homebrew/homebrew#22721.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Chris Lucas 2013-09-20 22:30:08 -07:00 committed by Adam Vandenberg
parent efb49d7725
commit beb1da864a

18
Formula/spim.rb Normal file
View file

@ -0,0 +1,18 @@
require 'formula'
class Spim < Formula
homepage 'http://spimsimulator.sourceforge.net/'
# No source code tarball exists
url 'http://svn.code.sf.net/p/spimsimulator/code', :revision => 606
version '9.1.9'
def install
bin.mkpath
cd 'spim' do
system "make", "EXCEPTION_DIR=#{share}"
system "make", "install", "BIN_DIR=#{bin}",
"EXCEPTION_DIR=#{share}",
"MAN_DIR=#{man1}"
end
end
end