98 lines
2.7 KiB
Ruby
98 lines
2.7 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-13.0.0.tar.xz"
|
|
sha256 "855e4ea7b0d5a7066dc8db6f8f54a1d9da8ed5616d9c1cea8bc198d4adb57642"
|
|
|
|
bottle do
|
|
sha256 "95ec0116ff1b5c5dc468bf0d072d43e61776b7426114e00684a1ba813c5e91ea" => :sierra
|
|
sha256 "44f072b66e5ff22c4bdebb77ca14fc06b04d837d7e7616f7724add0c62890292" => :el_capitan
|
|
sha256 "dfab98f2d39081b1acadbd1ead2de965069ee9acc91b237edf1ffcd4420f8226" => :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-qt", "Build with Qt GUI"
|
|
|
|
deprecated_option "with-qt5" => "with-qt"
|
|
|
|
depends_on "docbook-xsl" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "pugixml" => :build
|
|
depends_on :ruby => ["1.9", :build]
|
|
depends_on "boost"
|
|
depends_on "libebml"
|
|
depends_on "libmatroska"
|
|
depends_on "libogg"
|
|
depends_on "libvorbis"
|
|
depends_on "flac" => :recommended
|
|
depends_on "libmagic" => :recommended
|
|
depends_on "qt" => :optional
|
|
depends_on "gettext" => :optional
|
|
|
|
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?("qt")
|
|
qt = Formula["qt"]
|
|
|
|
args << "--with-moc=#{qt.opt_bin}/moc"
|
|
args << "--with-uic=#{qt.opt_bin}/uic"
|
|
args << "--with-rcc=#{qt.opt_bin}/rcc"
|
|
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
|