homebrew-core/Formula/dvdauthor.rb

24 lines
714 B
Ruby
Raw Normal View History

require 'formula'
2011-03-14 20:12:36 +00:00
# Dvdauthor will optionally detect ImageMagick or GraphicsMagick, too.
# But we don't add either as deps because they are big.
2011-03-10 05:11:03 +00:00
class Dvdauthor < Formula
2011-03-14 20:12:36 +00:00
url 'http://downloads.sourceforge.net/project/dvdauthor/dvdauthor/0.7.0/dvdauthor-0.7.0.tar.gz'
homepage 'http://dvdauthor.sourceforge.net/'
2011-03-14 20:12:36 +00:00
md5 '33a447fb98ab3293ac40f869eedc17ff'
2011-03-14 20:12:36 +00:00
depends_on 'pkg-config' => :build
depends_on 'libdvdread'
def install
2011-03-14 20:12:36 +00:00
ENV.x11 # For libpng, etc.
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make"
2011-03-14 20:12:36 +00:00
ENV.j1 # Install isn't parallel-safe
system "make install"
end
end