osx-cross / homebrew-avr

Homebrew AVR Toolchain
BSD 2-Clause "Simplified" License
394 stars 79 forks source link

simavr: fix tarball URL #337

Open fauxpark opened 5 months ago

fauxpark commented 5 months ago

URL was incorrect. Also bumped to generate new bottles.

fauxpark commented 5 months ago

Looks like this is broken. The makefile logic checks that a folder exists in the cellar named avr-gcc*, which works in bash but not zsh:

   ifneq (${shell test -d $(HOMEBREW_PREFIX)/Cellar/avr-gcc* && echo Exists}, Exists)
    $(error Please install avr-gcc: brew tap osx-cross/homebrew-avr ; brew install avr-libc)
   endif

(The error message is also wrong; avr-libc no longer exists as a separate formula).