aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/spim.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/Library/Formula/spim.rb b/Library/Formula/spim.rb
deleted file mode 100644
index efe29bde9..000000000
--- a/Library/Formula/spim.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-require 'formula'
-
-class Spim < Formula
- homepage 'http://pages.cs.wisc.edu/~larus/spim.html'
- url 'http://www.cs.wisc.edu/~larus/SPIM/spim.tar.gz'
- version '8.0'
- md5 '146558e8256f2b7577fb825fdc76a04f'
-
- def install
- cd 'spim' do
- 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
-end