commit 7bf8349b5a0be1faa1090d2ba9ba3469ae5c6b83 Author: EnumDev Date: Thu May 8 17:15:47 2025 +0300 Initial Commit diff --git a/pkg.info b/pkg.info new file mode 100644 index 0000000..95117fb --- /dev/null +++ b/pkg.info @@ -0,0 +1,9 @@ +name: podman +description: A tool for managing OCI containers and pods +version: 5.2.5 +url: https://podman.io/ +license: Apache-2.0 +architecture: x86_64 +depends: ["conmon","containers-common","containers-image","containers-storage","gcc","glibc","gpgme","libseccomp","runc","man-db","netavark","shadow"] +make_depends: ["btrfs-progs","golang","udev"] +type: source diff --git a/source-files/podman.esv b/source-files/podman.esv new file mode 100644 index 0000000..35b161a --- /dev/null +++ b/source-files/podman.esv @@ -0,0 +1,6 @@ +name: podman +description: Podman API Service +type: background +start_cmd: /usr/bin/podman --log-level info system service +exit_method: kill +restart: true diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..d84ac38 --- /dev/null +++ b/source.sh @@ -0,0 +1,33 @@ +# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package +# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE +# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT + +DOWNLOAD="https://github.com/containers/podman/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz" +FILENAME="${DOWNLOAD##*/}" + +# The prepare function is executed in the root of the temp directory +# This function is used for downloading files and putting them into the correct location +prepare() { + wget "$DOWNLOAD" + tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" +} + +# The build function is executed in the source directory +# This function is used to compile the source code +build() { + make BUILDTAGS="seccomp" PREFIX=/usr +} + +# The package function is executed in the source directory +# This function is used to move the compiled files into the output directory +package() { + make PREFIX=/usr DESTDIR="$BPM_OUTPUT" install + + # Remove systemd services + rm -r "$BPM_OUTPUT"/usr/lib/systemd + + # Install ESVM service + install -Dm644 "$BPM_WORKDIR"/podman.esv "$BPM_OUTPUT"/etc/esvm/services/podman.esv + + install -Dm644 LICENSE "$BPM_OUTPUT"/usr/share/licenses/podman/LICENSE +}