VobSub2SRT icon indicating copy to clipboard operation
VobSub2SRT copied to clipboard

brew install fails with "Non-checksummed download of vobsub2srt formula file from an arbitrary URL is unsupported!"

Open ghouliesdad opened this issue 4 years ago • 1 comments

This is on my MacMini running Mojave:

$ brew install --HEAD https://github.com/ruediger/VobSub2SRT/raw/master/packaging/vobsub2srt.rb 2>&1 | tee -a ~/Homebrew-install.log brew extract or brew create and brew tap-new to create a formula file in a tap on GitHub instead.: Invalid usage: Non-checksummed download of vobsub2srt formula file from an arbitrary URL is unsupported! (UsageError) brew extract or brew create and brew tap-new to create a formula file in a tap on GitHub instead.: Invalid usage: Non-checksummed download of vobsub2srt formula file from an arbitrary URL is unsupported! (UsageError)

ghouliesdad avatar Feb 07 '21 23:02 ghouliesdad

This is only the first minor issue when building on macOS. For security reasons Homebrew stopped allowing direct Formula references like that. But you can get around that by just referencing it form a local file like this:

$ wget https://github.com/ruediger/VobSub2SRT/raw/master/packaging/vobsub2srt.rb
$ brew install --HEAD ./vobsub2srt.rb

That'll get you past the first Homebrew error, but now you have to deal with the actual build errors described in https://github.com/ruediger/VobSub2SRT/issues/81

varenc avatar Feb 14 '22 23:02 varenc