diff options
Diffstat (limited to 'scripts/package-build/podman/package.toml')
-rw-r--r-- | scripts/package-build/podman/package.toml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/scripts/package-build/podman/package.toml b/scripts/package-build/podman/package.toml new file mode 100644 index 00000000..952af518 --- /dev/null +++ b/scripts/package-build/podman/package.toml @@ -0,0 +1,27 @@ +[[packages]] +name = "podman" +commit_id = "v4.9.5" +scm_url = "https://github.com/containers/podman" + +#build_cmd = "cd ..; ./build.sh" +build_cmd = """ +make install.tools +make podman-release + +tar xf podman-release-$(dpkg --print-architecture).tar.gz +VERSION=$(ls -d podman-v* | cut -c9-) + +fpm --input-type dir --output-type deb --name podman \ + --version $VERSION --deb-compression gz \ + --maintainer "VyOS Package Maintainers <maintainers@vyos.net>" \ + --description "Engine to run OCI-based containers in Pods" \ + --depends conmon --depends crun --depends netavark --depends libgpgme11 \ + --depends fuse-overlayfs --depends golang-github-containers-common \ + --license "Apache License 2.0" -C podman-v$VERSION --package .. +""" + +[packages.dependencies] +packages = [ + "libseccomp-dev", + "libgpgme-dev" +] |