Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Podman binary switch to universal installer #16

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions Podman/Podman.download.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,13 @@
<plist version="1.0">
<dict>
<key>Description</key>
<string>Downloads Apple installer package for the latest release of podman.
GITHUB_ARCH: one of "amd64" (for Intel) or "arm64" (for Apple silicon)</string>
<string>Downloads the universal Apple installer package for the latest release of podman</string>
<key>Identifier</key>
<string>com.github.autopkg.gregneagle-recipes.download.podman</string>
<key>Input</key>
<dict>
<key>NAME</key>
<string>Podman</string>
<key>GITHUB_ARCH</key>
<string>amd64</string>
</dict>
<key>MinimumVersion</key>
<string>1.0</string>
Expand All @@ -24,7 +21,7 @@ GITHUB_ARCH: one of "amd64" (for Intel) or "arm64" (for Apple silicon)</string>
<key>Arguments</key>
<dict>
<key>asset_regex</key>
<string>podman-installer-macos-%GITHUB_ARCH%.pkg</string>
<string>podman-installer-macos-universal.pkg</string>
<key>github_repo</key>
<string>containers/podman</string>
</dict>
Expand All @@ -33,7 +30,7 @@ GITHUB_ARCH: one of "amd64" (for Intel) or "arm64" (for Apple silicon)</string>
<key>Arguments</key>
<dict>
<key>filename</key>
<string>podman-installer-macos-%GITHUB_ARCH%-%version%.pkg</string>
<string>podman-installer-macos-universal-%version%.pkg</string>
</dict>
<key>Processor</key>
<string>URLDownloader</string>
Expand Down
7 changes: 2 additions & 5 deletions Podman/Podman.pkg.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,14 @@
<plist version="1.0">
<dict>
<key>Description</key>
<string>Downloads Apple installer package for the latest release of podman.
Names package with version number in the filename (helpful for Jamf).
GITHUB_ARCH: one of "amd64" (for Intel) or "arm64" (for Apple silicon)</string>
<string>Downloads the universal Apple installer package for the latest release of podman.
Names package with version number in the filename (helpful for Jamf).</string>
<key>Identifier</key>
<string>com.github.autopkg.gregneagle-recipes.pkg.podman</string>
<key>Input</key>
<dict>
<key>NAME</key>
<string>Podman</string>
<key>GITHUB_ARCH</key>
<string>amd64</string>
</dict>
<key>MinimumVersion</key>
<string>1.0</string>
Expand Down