blob: 08ea8222f9d8cdd61cecab0885f5c443f49d718f (
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
|