Add flasm 1.62

(Inspired by binary-only formula by [iconara].)
master
Adam Vandenberg 2010-08-15 11:28:46 -07:00
parent 2c76973790
commit f4792b72db
1 changed files with 17 additions and 0 deletions

17
Formula/flasm.rb Normal file
View File

@ -0,0 +1,17 @@
require 'formula'
class Flasm <Formula
url 'http://www.nowrap.de/download/flasm16src.zip'
version '1.62'
homepage 'http://www.nowrap.de/flasm.html'
md5 '28a4586409061b385d1cd27d3f120c0b'
def install
inreplace "Makefile" do |s|
s.change_make_var! 'CFLAGS', ENV.cflags
end
system "make"
bin.install "flasm"
end
end