bb01b0d9b6
GNU VCDImager is a full-featured mastering suite for authoring, disassembling and analyzing Video CDs and Super Video CDs
18 lines
443 B
Ruby
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
|