Homebrew formula
gfontenot opened this issue · 12 comments
I would love to be able to install this via Homebrew instead of having to install this in my path manually. This is painfully simple for a shell script like this, but you'll have to start tagging release versions. Here's an example formula that you could use:
require 'formula'
class ObjcRun < Formula
homepage 'https://github.com/iljaiwas/objc-run'
url 'https://github.com/iljaiwas/objc-run.git', :tag => '1.0'
head 'https://github.com/iljaiwas/objc-run.git'
def install
bin.install 'objc-run'
end
end
👍
I added a "1.0" tag to the current revision. Does this help?
Sure does! Do you want to submit a PR to the homebrew repo, or do you
want me to?
On 01/10, Ilja Iwas wrote:
I added a "1.0" tag to the current revision. Does this help?
Reply to this email directly or view it on GitHub:
#7 (comment)
Gordon Fontenot
iOS developer at thoughtbot
http://www.thoughtbot.com
@gfontenot
I don't have a clue about homebrew, so I'd appreciate it if you could take the time to submit the formula. Thanks.
Will do.
On 01/10, Ilja Iwas wrote:
I don't have a clue about homebrew, so I'd appreciate it if you could take the time to submit the formula. Thanks.
Reply to this email directly or view it on GitHub:
#7 (comment)
Gordon Fontenot
iOS developer at thoughtbot
http://www.thoughtbot.com
@gfontenot
Thanks for doing this!
@iljaiwas Can you either move the 1.0
tag to the current HEAD
, or add a new tag? That way I can include the tests in the brew formula.
Current HEAD is now tagged as 1.1. Hope this helps.
Pull request for home brew is currently open at: Homebrew/legacy-homebrew#26052
I actually opened a PR for this 9 days ago: Homebrew/legacy-homebrew#25814. I started getting the runaround from them, and haven't had time to figure out how to do what they are asking me to do. Mine might be a better starting point if someone wants to lend a hand.
Formula pull request is approved now. Thanks everyone for helping out.