homebrew-core/Formula/dirac.rb

15 lines
360 B
Ruby
Raw Normal View History

require 'formula'
2009-10-07 10:24:34 +00:00
2011-03-10 05:11:03 +00:00
class Dirac < Formula
2009-10-07 10:24:34 +00:00
url 'http://diracvideo.org/download/dirac-research/dirac-1.0.2.tar.gz'
md5 'a57c2c5e58062d437d9ab13dffb28f0f'
homepage 'http://diracvideo.org/'
2011-03-21 21:24:22 +00:00
fails_with_llvm
2009-10-07 10:24:34 +00:00
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end