blob: b8d69d2a752c8a7fad5601d9b9020e6bf694559c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Asm6 < Formula
  url      'http://home.comcast.net/~olimar/NES/asm6.zip'
  homepage 'http://home.comcast.net/~olimar/NES/'
  sha1 '9fbc1eed740a16107730e7f996d7ddad8277eb4e'
  version  '1.6'
  def install
    system "#{ENV.cc} -o asm6 asm6.c"
    bin.install "asm6"
  end
end
  |