homebrew-core/Formula/yasm.rb
David Höppner 6a8be33143 Yasm formula
Yasm is a complete rewrite of the NASM assembler under the "new" BSD License.
Yasm currently supports the x86 and AMD64 instruction sets, accepts NASM and
GAS assembler syntaxes, outputs binary, ELF32, ELF64, 32 and 64-bit Mach-O,
RDOFF2, COFF, Win32, and Win64 object formats, and generates source debugging
information in STABS, DWARF 2, and CodeView 8 formats.
2009-09-11 17:42:53 +01:00

12 lines
356 B
Ruby

require 'brewkit'
class Yasm <Formula
@url='http://www.tortall.net/projects/yasm/releases/yasm-0.8.0.tar.gz'
@homepage='http://www.tortall.net/projects/yasm/'
@md5='84a72204c9b452a00b39b1b00495163f'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end