homebrew-core/Formula/vcdimager.rb

21 lines
565 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Vcdimager < Formula
homepage 'http://www.gnu.org/software/vcdimager/'
2012-02-10 04:46:13 +00:00
url 'http://ftpmirror.gnu.org/vcdimager/vcdimager-0.7.24.tar.gz'
mirror 'http://ftp.gnu.org/gnu/vcdimager/vcdimager-0.7.24.tar.gz'
2012-02-10 06:32:04 +00:00
md5 '3af22978fd79c79d5fda6513b6811145'
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