Add bottle steps to makefile

This commit is contained in:
Gabriel Augendre 2020-07-06 09:19:28 +02:00
parent 893804895b
commit 50aa48d38c
No known key found for this signature in database
GPG Key ID: 1E693F4CE4AEE7B4
1 changed files with 13 additions and 0 deletions

View File

@ -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