È possibile creare una formula Homebrew che non ha bisogno di un URL da scaricare?
Nel mio caso la ricetta dipende solo da altre ricette e installa uno script di shell specifico homebrew.
class Test < Formula
desc "Test"
homepage "https://test.com"
version "1.0"
depends_on "yschimke/tap/oksocial"
def install
(bin+"testoksocial").write <<-EOS.undent
#!/bin/sh
echo Hello
EOS
end
end
Ma l'esecuzione di questo dà
$ brew install ./test.rb
Error: formulae require at least a URL
Please report this bug:
https://git.io/brew-troubleshooting
/usr/local/Library/Homebrew/formula.rb:193:in 'determine_active_spec'