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.
This commit is contained in:
David Höppner 2009-09-11 14:12:20 +02:00 committed by Max Howell
parent 9a16248377
commit 6a8be33143

12
Formula/yasm.rb Normal file
View file

@ -0,0 +1,12 @@
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