Some checks failed
Build / Build openSUSE (leap:15.6) (push) Has been cancelled
Build / Build openSUSE (leap:16.0) (push) Has been cancelled
Build / Build openSUSE (tumbleweed) (push) Has been cancelled
Build / Build Fedora (42) (push) Has been cancelled
Build / Build Fedora (43) (push) Has been cancelled
Build / Build Fedora (44) (push) Has been cancelled
Build / Build OpenMandriva (cooker) (push) Has been cancelled
Build / Build Mageia (9) (push) Has been cancelled
Build / Build Debian (bookworm) (push) Has been cancelled
Build / Build Debian (forky) (push) Has been cancelled
Build / Build Debian (trixie) (push) Has been cancelled
Build / Build Ubuntu (noble) (push) Has been cancelled
Build / Build Ubuntu (questing) (push) Has been cancelled
Build / Build Ubuntu (resolute) (push) Has been cancelled
Build / Upload Ubuntu PPA (noble) (push) Has been cancelled
Build / Upload Ubuntu PPA (questing) (push) Has been cancelled
Build / Upload Ubuntu PPA (resolute) (push) Has been cancelled
Build / Build FreeBSD (push) Has been cancelled
Build / Build OpenBSD (push) Has been cancelled
Build / Build macOS Public (release, macos-15) (push) Has been cancelled
Build / Build macOS Public (release, macos-15-intel) (push) Has been cancelled
Build / Build macOS Private (release, macos-arm64) (push) Has been cancelled
Build / Build Windows MinGW (i686, debug) (push) Has been cancelled
Build / Build Windows MinGW (i686, release) (push) Has been cancelled
Build / Build Windows MinGW (x86_64, debug) (push) Has been cancelled
Build / Build Windows MinGW (x86_64, release) (push) Has been cancelled
Build / Build Windows MSVC (arm64, debug, arm64 debug, windows-11-arm) (push) Has been cancelled
Build / Build Windows MSVC (arm64, release, arm64 release, windows-11-arm) (push) Has been cancelled
Build / Build Windows MSVC (x86, debug, x86 debug, windows-2022) (push) Has been cancelled
Build / Build Windows MSVC (x86, release, x86 release, windows-2022) (push) Has been cancelled
Build / Build Windows MSVC (x86_64, debug, x86_64 debug, windows-2022) (push) Has been cancelled
Build / Build Windows MSVC (x86_64, release, x86_64 release, windows-2022) (push) Has been cancelled
Build / Upload (push) Has been cancelled
Build / Attach to release (push) Has been cancelled
This commit introduces the ability to build and notarize DMG files as part of the macOS deployment process. The build_sign_notarize.sh script is updated to include a new --dmg option, allowing users to create a DMG after app notarization. Additionally, the Dmg.cmake script is modified to accept a codesign identity from an environment variable, improving flexibility for developers. The README.md is also updated to reflect these changes and provide guidance on the new DMG build process.
80 lines
2.5 KiB
Markdown
80 lines
2.5 KiB
Markdown
# Build helper scripts
|
||
|
||
This `build_tools/` directory contains **helper scripts and notes** for building Strawberry.
|
||
|
||
- It is **not** intended to be your CMake build output directory.
|
||
- Recommended CMake build output directories: `cmake-build/`, `build-release/`, etc.
|
||
|
||
## macOS
|
||
|
||
- Install dependencies via Homebrew:
|
||
|
||
```bash
|
||
./build_tools/macos/install_brew_deps.sh
|
||
```
|
||
|
||
- Build Strawberry:
|
||
|
||
```bash
|
||
./build_tools/macos/build_app.sh --release
|
||
open ./cmake-build-macos-release/strawberry.app
|
||
```
|
||
|
||
## macOS signing + notarization (Developer ID distribution)
|
||
|
||
This repo includes `build_tools/macos/build_sign_notarize.sh` to automate:
|
||
|
||
- build → (optional deploy) → codesign → notarize → staple → verify
|
||
|
||
### One-time setup (Apple Developer)
|
||
|
||
- **Install certificates**:
|
||
- In the Apple Developer portal, create (or download) a **Developer ID Application** certificate.
|
||
- Install it into your login keychain (Xcode can manage this via **Xcode → Settings → Accounts**).
|
||
|
||
- **Provisioning profiles**:
|
||
- For **Developer ID distribution (outside the Mac App Store)**, you typically **do not need a provisioning profile**.
|
||
- You *do* need profiles if you are building a **Mac App Store**-signed app (not what this repo’s scripts target).
|
||
|
||
- **Notarization credentials**:
|
||
- Create a `notarytool` keychain profile (recommended) so you don’t have to pass secrets on the command line:
|
||
|
||
```bash
|
||
# NOTE: <profile-name> is a positional argument (not a flag).
|
||
# Pick any name you want, e.g. "strawberry-notary".
|
||
xcrun notarytool store-credentials "<profile-name>" \
|
||
--apple-id "<your-apple-id>" \
|
||
--team-id "<TEAMID>" \
|
||
--password "<app-specific-password>"
|
||
```
|
||
|
||
### Listing what’s installed locally
|
||
|
||
Run with no args to list local signing identities + notarytool profiles:
|
||
|
||
```bash
|
||
./build_tools/macos/build_sign_notarize.sh
|
||
```
|
||
|
||
### Build + sign + notarize
|
||
|
||
```bash
|
||
./build_tools/macos/build_sign_notarize.sh --run --release --clean --deploy \
|
||
--identity "Developer ID Application: Your Name (TEAMID)" \
|
||
--notary-profile "<profile-name>"
|
||
```
|
||
|
||
### Build + sign + notarize + DMG (recommended for public distribution)
|
||
|
||
This produces:
|
||
|
||
- a notarized `strawberry.app` (stapled)
|
||
- a notarized `strawberry-notarize.zip` (useful for Sparkle / downloads)
|
||
- a notarized `strawberry-*.dmg` (stapled)
|
||
|
||
```bash
|
||
./build_tools/macos/build_sign_notarize.sh --run --release --clean --deploy --dmg \
|
||
--identity "Developer ID Application: Your Name (TEAMID)" \
|
||
--notary-profile "<profile-name>"
|
||
```
|