nasm 2.13

Closes #13092.

Signed-off-by: Alexander Hamann <neutric@users.noreply.github.com>
This commit is contained in:
Alexander Hamann 2017-05-01 08:10:35 +02:00
parent 47012f3f97
commit c605e4c7e9

View file

@ -1,8 +1,8 @@
class Nasm < Formula
desc "Netwide Assembler (NASM) is an 80x86 assembler"
homepage "http://www.nasm.us/"
url "http://www.nasm.us/pub/nasm/releasebuilds/2.12.02/nasm-2.12.02.tar.xz"
sha256 "4c866b60c0b1c4ebc715205d007b4640ff4e36af637c9a7deb87b2900e544321"
url "http://www.nasm.us/pub/nasm/releasebuilds/2.13/nasm-2.13.tar.xz"
sha256 "ba854c2f02f34f0d6a4611c05e8cb65d9fae8c2b21a4def7fba91a7d67ffde97"
bottle do
cellar :any_skip_relocation
@ -23,6 +23,7 @@ class Nasm < Formula
system "./autogen.sh" if build.head?
system "./configure", "--prefix=#{prefix}"
system "make", "manpages" if build.head?
system "make", "rdf"
system "make", "install", "install_rdf"
end