blob: 1c787620a167d008466e0d874e2856459bb57ec8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|