homebrew-core/Formula/vcdimager.rb

20 lines
499 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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' => :build
depends_on 'libcdio'
depends_on 'popt'
def install
ENV.libxml2
2010-08-31 16:45:14 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end