Add bottle steps to makefile
This commit is contained in:
parent
893804895b
commit
50aa48d38c
1 changed files with 13 additions and 0 deletions
13
Makefile
13
Makefile
|
@ -14,4 +14,17 @@ uninstall:
|
|||
clean:
|
||||
rm -rf .build
|
||||
|
||||
bottle:
|
||||
echo "This hasn't yet been tested."
|
||||
mkdir -p .build/bottles
|
||||
cd .build/bottles
|
||||
brew test-bot --skip-setup --root-url https://dl.bintray.com/crocmagnon/bottles-formulae --bintray-org=crocmagnon --tap=crocmagnon/homebrew-formulae aerc-contacts
|
||||
|
||||
publish: bottle
|
||||
echo "This hasn't yet been tested."
|
||||
brew pr-upload --bintray-org=crocmagnon --root-url=https://dl.bintray.com/crocmagnon/bottles-formulae
|
||||
git -C /usr/local/Homebrew/Library/Taps/crocmagnon/homebrew-formulae/ format-patch -1 HEAD -o $(PWD)
|
||||
echo "Don't forget to apply the patch to your homebrew repo and push ;)"
|
||||
|
||||
|
||||
.PHONY: build install uninstall clean
|
||||
|
|
Loading…
Reference in a new issue