homebrew-core/Formula/yasm.rb

13 lines
353 B
Ruby
Raw Normal View History

require 'formula'
class Yasm <Formula
2010-08-23 13:26:26 +00:00
url 'http://www.tortall.net/projects/yasm/releases/yasm-1.1.0.tar.gz'
2010-04-09 15:19:15 +00:00
homepage 'http://www.tortall.net/projects/yasm/'
2010-08-23 13:26:26 +00:00
md5 '8392e5f2235c2c2a981e1a633f2698cb'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end