https://github.com/stackql/stackql-mac-installer
https://github.com/stackql/stackql-mac-installer
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stackql/stackql-mac-installer
- Owner: stackql
- Created: 2022-03-08T00:09:54.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-26T15:49:34.000Z (almost 2 years ago)
- Last Synced: 2025-03-15T07:46:03.127Z (10 months ago)
- Language: Shell
- Size: 67.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# stackql-mac-installer
Creates a multi arch (fat) `pkg` MacOS installer for [stackql](https://github.com/stackql/stackql), notarizes the package with Apple and staples the notarization ticket to the package.
## Prerequisites
Apple developer code signing certificates need to be installed in the key chain on the machine creating the installer
## Usage
```bash
DEV_TEAM=...
APP_SPECIFIC_PASSWORD=...
DEV_ACCOUNT=...
APP_SIGNATURE=...
INST_SIGNATURE=...
sh create-mac-installer.sh
```
### Prereq For Mac In Cloud (without admin priveleges)
```bash
mkdir $HOME/.homebrew && curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C $HOME/.homebrew
export PATH=$HOME/.homebrew/bin:$PATH
brew install jq
```