From 50aa48d38cf9027341d43611c2581cea2b5c83d2 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Mon, 6 Jul 2020 09:19:28 +0200 Subject: [PATCH] Add bottle steps to makefile --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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