0b4f4b854e
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>
16 lines
400 B
Ruby
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
|