Skip to content

A signed and notarized universal macOS installer package for GNU Wget.

Notifications You must be signed in to change notification settings

donmccaughey/wget_pkg

Repository files navigation

GNU Wget 1.21.4 for macOS

This project builds a signed and notarized universal macOS installer package for GNU Wget, a command line tool for retrieving files using HTTP, HTTPS, FTP and FTPS. It contains the source distribution of Wget 1.21.4, libiconv 1.17, OpenSSL 1.1.1w and zlib 1.3.

Prerequesites

A recent version of Xcode and the jq command are needed to build and notarize this installer package. An Apple Developer account is required to generate the credentials needed to sign and notarize.

Building

The Makefile in the project root directory builds the installer package. The following makefile variables can be set from the command line:

  • APP_SIGNING_ID: The name of the Apple Developer ID Application certificate used to sign the wget executable. The certificate must be installed on the build machine's Keychain. Defaults to "Developer ID Application: Donald McCaughey" if not specified.
  • INSTALLER_SIGNING_ID: The name of the Apple Developer ID Installer certificate used to sign the installer. The certificate must be installed on the build machine's Keychain. Defaults to "Developer ID Installer: Donald McCaughey" if not specified.
  • NOTARIZATION_KEYCHAIN_PROFILE: The name of the notarization credentials stored on the build machine's Keychain. Use the notarytool store-credentials command to create this profile. Defaults to "Donald McCaughey" if not specified.
  • TMP: The name of the directory for intermediate files. Defaults to "./tmp" if not specified.

To build and sign the executable and installer, run:

    $ make [APP_SIGNING_ID="<cert name 1>"] [INSTALLER_SIGNING_ID="<cert name 2>"] [TMP="<build dir>"]

Intermediate files are generated in the temp directory; the signed installer package is written into the project root with the name wget-1.21.4-r3.pkg.

To notarize the signed installer package, run:

    $ make notarize [NOTARIZATION_KEYCHAIN_PROFILE="<profile name>"] [TMP="<build dir>"]

This will submit the installer package for notarization and staple it on success. Check the file $(TMP)/notarization-log.json for detailed information if notarization fails. The signed installer is stapled in place if notarization succeeds. Use the command:

    $ xcrun stapler validate --verbose wget-1.21.4-r3.pkg

to check the notarization state of the installer package.

To remove all generated files (including the signed installer), run:

    $ make clean

Signing and Notarizing Credentials

Three sets of credentials are needed to sign and notarize this package:

  • A "Developer ID Application" certificate (for signing the wget executable)
  • A "Developer ID Installer" certificate (for signing the installer package)
  • An App Store Connect API key (for notarizing the signed installer)

The two certificates are obtained from the Apple Developer portal; use the Keychain Access app to create the certificate signing requests. Add the certificates to the build machine's Keychain.

The App Store Connect API key is obtained from the App Store Connect site. After the key is created, get the Issuer ID (a UUID), the Key ID (an alphanumeric string) and download the API key, which comes as a file named AuthKey_<key id>.p8. To add the API key to the build machine's Keychain, use the store-credentials subcommand of notarytool:

    $ xcrun notarytool store-credentials "<keychain profile name>" \
        --key ~/.keys/AuthKey_<key id>.p8 \
        --key-id <key id> \
        --issuer <issuer id> \
        --sync

The --sync option adds the credentials to the user's iCloud Keychain.

License

The installer and related scripts are copyright (c) 2023 Don McCaughey. Wget and the installer are distributed under the GNU General Public License, version 3. OpenSSL is distributed under its own BSD-style license. See the wget/COPYING and the openssl/LICENSE files for details.