homebrew-core/Formula/vcdimager.rb

21 lines
574 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'
sha1 '8c245555c3e21dcbc3d4dbb2ecca74f609545424'
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