homebrew-core/Formula/mkvdts2ac3.rb
Stephen Reay 0b4f4b854e mkvdts2ac3: add support for --HEAD option.
Adds support for using upstream git HEAD, to fix compatibility issues
identified in Homebrew/homebrew#30328

Closes Homebrew/homebrew#30329.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-06-21 08:17:39 +01:00

16 lines
400 B
Ruby

require 'formula'
class Mkvdts2ac3 < Formula
homepage 'https://github.com/JakeWharton/mkvdts2ac3'
head 'https://github.com/JakeWharton/mkvdts2ac3.git'
url 'https://github.com/JakeWharton/mkvdts2ac3/archive/1.6.0.tar.gz'
sha1 'e427eb6875d935dc228c42e99c3cd19c7ceaa322'
depends_on 'mkvtoolnix'
depends_on 'ffmpeg'
def install
bin.install "mkvdts2ac3.sh" => "mkvdts2ac3"
end
end