There're a lot of formulas like teamviewer that have version number but NOT included in its downloading url (as for teamviewer, it is https://download.teamviewer.com/download/TeamViewer.dmg
).
This means, these formulas' upgrading will not reflect on their downloading urls and that will cause an sha256 check failure every time they upgrade.
homebrew-cask eliminate this risk by giving :latest
to version
and :no_check
to sha256
,
cask SomeFormula
version :latest
sha256 :no_check
...
end
So that version number is not a concern and sha256 check will be skipped.
What I need is an equivalent mechanism in linuxbrew.
Does anyone know any related documentation about this? Or any suggestion on how this is achievable in linuxbrew?