diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-13 18:44:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-13 18:44:24 +0200 |
commit | ce64c1403df0e4ca75be50e4a835cc0889b0c8ac (patch) | |
tree | 9637b215859c8459f61f58fb23351201c42b3111 /contrib/snapcraft/snap/snapcraft.yaml | |
parent | 7a859f064a1f4a5a7eb5ab0d8d175c2f0b0de497 (diff) | |
parent | e9365c1a81337c7700ae2d360082b6b1cadb7f0e (diff) | |
download | podman-ce64c1403df0e4ca75be50e4a835cc0889b0c8ac.tar.gz podman-ce64c1403df0e4ca75be50e4a835cc0889b0c8ac.tar.bz2 podman-ce64c1403df0e4ca75be50e4a835cc0889b0c8ac.zip |
Merge pull request #3772 from haircommander/snapcraft
fork https://github.com/abitrolly/podman
Diffstat (limited to 'contrib/snapcraft/snap/snapcraft.yaml')
-rw-r--r-- | contrib/snapcraft/snap/snapcraft.yaml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/contrib/snapcraft/snap/snapcraft.yaml b/contrib/snapcraft/snap/snapcraft.yaml new file mode 100644 index 000000000..7ff0df03b --- /dev/null +++ b/contrib/snapcraft/snap/snapcraft.yaml @@ -0,0 +1,45 @@ +name: podman # you probably want to 'snapcraft register <name>' +version: '0.11.1.1' # just for humans, typically '1.2+git' or '1.3.2' +summary: Manage pods, containers and container images +description: | + `podman` is a tool for managing Pods, Containers, and Container Images + in multiple formats including Docker/OSI images. It exposes the same + command line interface as Docker, but runs containers unprivileged by + default. + +confinement: devmode # use 'strict' once you have the right plugs and slots + +base: core18 + +parts: + podman: + plugin: go + source: https://github.com/containers/libpod/archive/v0.11.1.1.tar.gz + go-importpath: github.com/containers/libpod + build-packages: + # https://github.com/containers/libpod/blob/master/install.md#build-and-run-dependencies + - btrfs-tools + - git + - golang-go + - go-md2man + - iptables + - libassuan-dev + - libdevmapper-dev + - libglib2.0-dev + - libc6-dev + - libgpgme11-dev + - libgpg-error-dev + - libostree-dev + - libprotobuf-dev + - libprotobuf-c0-dev + - libseccomp-dev + - libselinux1-dev + - pkg-config + stage-packages: + - libarchive13 + - libassuan0 + - libgpgme11 + - libicu60 + - libostree-1-1 + - libsoup2.4-1 + - libxml2 |