blob: 3eadce0d5b9c69054bb22a60272a9e7c8d0fbc67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Flasm < Formula
homepage 'http://www.nowrap.de/flasm.html'
url 'http://www.nowrap.de/download/flasm16src.zip'
sha1 '3b383fa042eae414c5e5608bfa91a42f44bd1a86'
version '1.62'
def install
system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
bin.install "flasm"
end
end
|