How to Distribute Binaries for OS X Using Homebrew
1–10 of 84 posts
Re: How to Distribute Binaries for OS X Using Homebrew
#2Re: How to Distribute Binaries for OS X Using Homebrew
#3Re: How to Distribute Binaries for OS X Using Homebrew
#4Its a bit off topic but is there a good alternative for windows? chocolatey doesn't seem to be a good solution.
Re: How to Distribute Binaries for OS X Using Homebrew
#5well.. yeah.. Every OS has an easy way to distribute binaries, the hard part is having something that work on each of them.
Re: How to Distribute Binaries for OS X Using Homebrew
#6Re: How to Distribute Binaries for OS X Using Homebrew
#7The brew command for users would be:
brew tap octavore/delta https://github.com/octavore/delta.git
brew install delta
---
Example above of course doesn't currently work because the formula is not there
(I successfully use it in my repo: https://github.com/stepanhruda/ios-simulator-app-installer)
Re: How to Distribute Binaries for OS X Using Homebrew
#8Linux got it right: https://en.wikipedia.org/wiki/Package_manager
It drives me crazy that Apple removed one the most amazing features of *nix systems: a unified software repository. Brew/brew cask doesn't come close to AUR.
Re: How to Distribute Binaries for OS X Using Homebrew
#9Rate limit exceeded. http://archive.is/Zp8IQ works.
Re: How to Distribute Binaries for OS X Using Homebrew
#10You don't even need to maintain a separate custom tap repo. Keep the formula in the same repo in a Formula directory, and include the repo URL when tapping (gets rid of the homebrew- restriction) The brew command for users would be: brew tap octavore/delta https://github.com/octavore/delta.git brew install delta --- Example above of course doesn't currently work because the formula is not there (I successfully use it…