1
0
Fork 0
mirror of synced 2024-06-01 18:20:20 +12:00
ArchiveBox/bin/build_brew.sh

46 lines
1.4 KiB
Bash
Raw Normal View History

2020-11-28 22:10:48 +13:00
#!/usr/bin/env bash
### Bash Environment Setup
# http://redsymbol.net/articles/unofficial-bash-strict-mode/
# https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html
# set -o xtrace
set -o errexit
set -o errtrace
set -o nounset
set -o pipefail
IFS=$'\n'
REPO_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd .. && pwd )"
CURRENT_PLAFORM="$(uname)"
REQUIRED_PLATFORM="Darwin"
if [[ "$CURRENT_PLAFORM" != "$REQUIRED_PLATFORM" ]]; then
echo "[!] Skipping the Homebrew package build on $CURRENT_PLAFORM (it can only be run on $REQUIRED_PLATFORM)."
exit 0
fi
2020-11-28 22:10:48 +13:00
cd "$REPO_DIR/brew_dist"
2020-11-28 22:11:10 +13:00
# make sure archivebox.rb is up-to-date with the dependencies
2023-11-04 17:30:24 +13:00
git pull
git status | grep 'up to date'
2020-11-28 22:11:10 +13:00
2023-11-04 17:30:24 +13:00
echo
echo "[+] Uninstalling any exisitng archivebox versions..."
brew uninstall archivebox || true
brew untap archivebox/archivebox || true
# echo "[*] Running Formula linters and test build..."
# brew test-bot --tap=ArchiveBox/homebrew-archivebox archivebox/archivebox/archivebox || true
# brew uninstall archivebox || true
# brew untap archivebox/archivebox || true
echo
echo "[+] Installing and building hombrew bottle from https://Github.com/ArchiveBox/homebrew-archivebox#main"
brew tap archivebox/archivebox
brew install --build-bottle archivebox
2020-11-28 22:10:48 +13:00
brew bottle archivebox
2023-11-04 17:30:24 +13:00
echo
echo "[√] Finished. Make sure to commit the outputted .tar.gz and bottle files!"