SPIM 9.1.9
Closes Homebrew/homebrew#22721. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
efb49d7725
commit
beb1da864a
1 changed files with 18 additions and 0 deletions
18
Formula/spim.rb
Normal file
18
Formula/spim.rb
Normal 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
|
Loading…
Reference in a new issue