homebrew-core/Formula/vcdimager.rb
David Höppner bb01b0d9b6 New formula vcdimager
GNU VCDImager is a full-featured mastering suite for authoring,
disassembling and analyzing Video CDs and Super Video CDs
2010-06-01 10:07:04 +02:00

18 lines
443 B
Ruby

require 'formula'
class Vcdimager <Formula
url 'http://ftp.gnu.org/pub/gnu/vcdimager/vcdimager-0.7.23.tar.gz'
homepage 'http://www.gnu.org/software/vcdimager/'
md5 '5e7d80fdbf0037ad20e438f2a9573253'
depends_on 'pkg-config'
depends_on 'libcdio'
depends_on 'popt'
def install
ENV.libxml2
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end