homebrew-core/Formula/spim.rb
Adam Vandenberg 95d9785ff5 Clean ups to several formulas, including:
* Removing silly concatenation
* Removing .bat files before installing
* Removing silly quoting
* Fixing download URLs
* Removing explicit versions
2010-04-17 18:24:02 -07:00

26 lines
572 B
Ruby

require 'formula'
class Spim <Formula
url 'http://www.cs.wisc.edu/~larus/SPIM/spim.tar.gz'
homepage 'http://pages.cs.wisc.edu/~larus/spim.html'
md5 '146558e8256f2b7577fb825fdc76a04f'
version '8.0'
def install
Dir.chdir 'spim'
inreplace "Makefile" do |s|
s.change_make_var! "BIN_DIR", bin
s.change_make_var! "EXCEPTION_DIR", libexec
s.change_make_var! "MAN_DIR", man1
end
system "make"
system "make install"
system "make install-man"
system "make test"
mv "#{man1}/spim.man", "#{man1}/spim.1"
end
end