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'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '3b383fa042eae414c5e5608bfa91a42f44bd1a86'
|
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
|