Est-il possible de créer une formule Homebrew qui ne nécessite pas d'URL pour le téléchargement ?
Dans mon cas, la recette dépend juste d'autres recettes et installe un shell script spécifique à 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
Mais en exécutant ceci, on obtient
$ 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'