github.com/containers/podman/v4@v4.9.4/contrib/pkginstaller/README.md (about) 1 ## How to build 2 3 ```sh 4 $ make ARCH=<amd64 | aarch64> NO_CODESIGN=1 pkginstaller 5 6 # or to create signed pkg 7 $ make ARCH=<amd64 | aarch64> CODESIGN_IDENTITY=<ID> PRODUCTSIGN_IDENTITY=<ID> pkginstaller 8 9 # or to prepare a signed and notarized pkg for release 10 $ make ARCH=<amd64 | aarch64> CODESIGN_IDENTITY=<ID> PRODUCTSIGN_IDENTITY=<ID> NOTARIZE_USERNAME=<appleID> NOTARIZE_PASSWORD=<appleID-password> NOTARIZE_TEAM=<team-id> notarize 11 ``` 12 13 The generated pkg will be written to `out/podman-macos-installer-*.pkg`. 14 Currently the pkg installs `podman`, `qemu`, `gvproxy` and `podman-mac-helper` to `/opt/podman` 15 16 The `qemu` build it uses is from [containers/podman-machine-qemu](https://github.com/containers/podman-machine-qemu) 17 18 ## Uninstalling 19 20 ```sh 21 $ sudo rm -rf /opt/podman 22 ``` 23 24 ### Screenshot 25 <img width="626" alt="screenshot-macOS-pkg-podman" src="https://user-images.githubusercontent.com/8885742/157380992-2e3b1573-34a0-4aa0-bdc1-a85f4792a1d2.png">