2010-08-15 18:28:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Flasm < Formula
|
2010-08-15 18:28:46 +00:00
|
|
|
homepage 'http://www.nowrap.de/flasm.html'
|
2012-02-10 04:06:30 +00:00
|
|
|
url 'http://www.nowrap.de/download/flasm16src.zip'
|
2010-08-15 18:28:46 +00:00
|
|
|
md5 '28a4586409061b385d1cd27d3f120c0b'
|
2012-02-10 04:06:30 +00:00
|
|
|
version '1.62'
|
2010-08-15 18:28:46 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-10 04:06:30 +00:00
|
|
|
system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
|
2010-08-15 18:28:46 +00:00
|
|
|
bin.install "flasm"
|
|
|
|
end
|
|
|
|
end
|