2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-19 17:54:01 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Nasm < Formula
|
2010-04-07 05:58:35 +00:00
|
|
|
homepage 'http://www.nasm.us/'
|
2013-08-17 23:50:07 +00:00
|
|
|
url 'http://www.nasm.us/pub/nasm/releasebuilds/2.10.09/nasm-2.10.09.tar.bz2'
|
|
|
|
sha256 '7141180d3874b5967c6a60191e8d45fba9cc86bd60a4803ad80b6b6b3eac36b9'
|
2011-09-23 20:58:40 +00:00
|
|
|
|
2012-08-12 17:57:47 +00:00
|
|
|
option :universal
|
2009-09-19 17:54:01 +00:00
|
|
|
|
|
|
|
def install
|
2012-08-12 17:57:47 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2011-09-23 20:58:40 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2013-01-05 04:45:18 +00:00
|
|
|
system "make install install_rdf"
|
2009-09-19 17:54:01 +00:00
|
|
|
end
|
|
|
|
end
|