blob: 261648aeef7f00db09fd173a5a0030bec338b7c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Nasm <Formula
@url='http://www.nasm.us/pub/nasm/releasebuilds/2.07/nasm-2.07.tar.bz2'
@homepage='http://www.nasm.us/'
@md5='d8934231e81874c29374ddef1fbdb1ed'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
|