Initial Commit

This commit is contained in:
2025-05-08 17:15:47 +03:00
commit 7bf8349b5a
3 changed files with 48 additions and 0 deletions
+9
View File
@@ -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
+6
View File
@@ -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
+33
View File
@@ -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
}