32 lines
953 B
Ruby
32 lines
953 B
Ruby
require 'formula'
|
|
|
|
class MediaInfo < Formula
|
|
homepage 'http://mediainfo.sourceforge.net'
|
|
url 'http://downloads.sourceforge.net/mediainfo/MediaInfo_CLI_0.7.58_GNU_FromSource.tar.bz2'
|
|
md5 'c332b376fe397531be894287ec97aab2'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
def install
|
|
cd 'ZenLib/Project/GNU/Library' do
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make"
|
|
end
|
|
|
|
cd "MediaInfoLib/Project/GNU/Library" do
|
|
args = ["--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--with-libcurl",
|
|
"--prefix=#{prefix}"]
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
|
|
cd "MediaInfo/Project/GNU/CLI" do
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|
|
end
|