Skip to content

Commit

Permalink
SPIM 9.1.9
Browse files Browse the repository at this point in the history
Closes Homebrew#22721.

Signed-off-by: Adam Vandenberg <[email protected]>
  • Loading branch information
cjlucas authored and adamv committed Sep 24, 2013
1 parent 7b03bba commit 39ce268
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Library/Formula/spim.rb
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 39ce268

Please sign in to comment.