diff options
| author | Chris Lucas | 2013-09-20 22:30:08 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-09-23 21:06:06 -0700 |
| commit | 67ea0b1bcc42fea6891597fa75e21618ae623877 (patch) | |
| tree | 235a0c59bbb5618579762e831a304ea9f0b1f749 /Library/Formula | |
| parent | 128762e99a3d26c0540fee0058793533cf843799 (diff) | |
| download | homebrew-67ea0b1bcc42fea6891597fa75e21618ae623877.tar.bz2 | |
SPIM 9.1.9
Closes #22721.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/spim.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/spim.rb b/Library/Formula/spim.rb new file mode 100644 index 000000000..b5f652397 --- /dev/null +++ b/Library/Formula/spim.rb @@ -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 |
