diff --git a/Makefile b/Makefile index 41fee3c..ce86894 100644 --- a/Makefile +++ b/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