diff options
| author | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
|---|---|---|
| committer | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
| commit | c82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch) | |
| tree | 56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/lxc/MAKEPKG | |
| download | ports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz | |
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/lxc/MAKEPKG')
| -rw-r--r-- | opt/lxc/MAKEPKG | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/opt/lxc/MAKEPKG b/opt/lxc/MAKEPKG new file mode 100644 index 0000000..80b6b95 --- /dev/null +++ b/opt/lxc/MAKEPKG @@ -0,0 +1,43 @@ +#!/bin/mkpkg +# description: Linux container runtime +# url: https://linuxcontainers.org/lxc/ + +name=lxc +version=7.0.0 +release=1 +depends=(libcap2 libseccomp) +makedeps=(meson) +source=(https://linuxcontainers.org/downloads/lxc/$name-$version.tar.gz) + +sha256sums=( + "ba0c860626efbac6683f351dd718edb062065e919716d787b89e3d547c5d9493" +) + +build() { + cd $name-$version + + meson setup build \ + --prefix=/usr \ + --libdir=/usr/lib \ + --sysconfdir=/etc \ + --localstatedir=/var \ + -Dbuildtype=release \ + -Dinit-script=[] \ + -Dapparmor=false \ + -Dselinux=false \ + -Dcoverity-build=false \ + -Dexamples=false \ + -Dman=false \ + -Dcapabilities=true \ + -Druntime-path=/run + + meson compile -C build -j$(nproc) + DESTDIR=$PKG meson install -C build --no-rebuild +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh |
