homebrew-core/Formula/asm6.rb

14 lines
295 B
Ruby

require 'formula'
class Asm6 < Formula
homepage 'http://home.comcast.net/~olimar/NES/'
url 'http://home.comcast.net/~olimar/NES/asm6.zip'
version '1.6'
sha1 '9fbc1eed740a16107730e7f996d7ddad8277eb4e'
def install
system "#{ENV.cc} -o asm6 asm6.c"
bin.install "asm6"
end
end