homebrew-core/Formula/mkvtoolnix.rb
2017-03-25 13:09:48 -04:00

102 lines
2.9 KiB
Ruby

class Mkvtoolnix < Formula
desc "Matroska media files manipulation tools"
homepage "https://www.bunkus.org/videotools/mkvtoolnix/"
url "https://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-10.0.0.tar.xz"
sha256 "12be72c373645b5bb9b9ea79ce8447958a1b806162868bb67803baa6d0032333"
bottle do
sha256 "86385603b1057b637b1b5acaf61c8300b7dcc5fb7f8da25d6d86d24c23ff5e8f" => :sierra
sha256 "79164274c263386649464a4b7a4cc7d6801efbfe72eeb21cbe110a6d969b83ed" => :el_capitan
sha256 "6140e599eb261ae364d4333962d4f366a81abc2a4127f56f138f2da6779b97b8" => :yosemite
end
head do
url "https://github.com/mbunkus/mkvtoolnix.git"
depends_on "automake" => :build
depends_on "autoconf" => :build
depends_on "libtool" => :build
end
option "with-qt5", "Build with QT GUI"
depends_on "docbook-xsl" => :build
depends_on "pkg-config" => :build
depends_on "pugixml" => :build
depends_on :ruby => ["1.9", :build]
depends_on "libogg"
depends_on "libvorbis"
depends_on "flac" => :recommended
depends_on "libmagic" => :recommended
depends_on "qt5" => :optional
depends_on "gettext" => :optional
# On Mavericks, the bottle (without c++11) can be used
# because mkvtoolnix is linked against libc++ by default
if MacOS.version >= "10.9"
depends_on "boost"
depends_on "libmatroska"
depends_on "libebml"
else
depends_on "boost" => "c++11"
depends_on "libmatroska" => "c++11"
depends_on "libebml" => "c++11"
end
needs :cxx11
def install
ENV.cxx11
features = %w[libogg libvorbis libebml libmatroska]
features << "flac" if build.with? "flac"
features << "libmagic" if build.with? "libmagic"
extra_includes = ""
extra_libs = ""
features.each do |feature|
extra_includes << "#{Formula[feature].opt_include};"
extra_libs << "#{Formula[feature].opt_lib};"
end
extra_includes.chop!
extra_libs.chop!
args = %W[
--disable-debug
--prefix=#{prefix}
--with-boost=#{Formula["boost"].opt_prefix}
--with-docbook-xsl-root=#{Formula["docbook-xsl"].opt_prefix}/docbook-xsl
--with-extra-includes=#{extra_includes}
--with-extra-libs=#{extra_libs}
]
if build.with? "qt5"
args << "--with-moc=#{Formula["qt5"].opt_bin}/moc"
args << "--with-rcc=#{Formula["qt5"].opt_bin}/rcc"
args << "--with-uic=#{Formula["qt5"].opt_bin}/uic"
args << "--enable-qt"
else
args << "--disable-qt"
end
system "./autogen.sh" if build.head?
system "./configure", *args
system "rake", "-j#{ENV.make_jobs}"
system "rake", "install"
end
test do
mkv_path = testpath/"Great.Movie.mkv"
sub_path = testpath/"subtitles.srt"
sub_path.write <<-EOS.undent
1
00:00:10,500 --> 00:00:13,000
Homebrew
EOS
system "#{bin}/mkvmerge", "-o", mkv_path, sub_path
system "#{bin}/mkvinfo", mkv_path
system "#{bin}/mkvextract", "tracks", mkv_path, "0:#{sub_path}"
end
end