From f6332a43c35387c4a2dea1746be5fd092890ae0e Mon Sep 17 00:00:00 2001 From: davidovski Date: Mon, 27 Jun 2022 23:09:07 +0100 Subject: added lf and iptables --- repo/lxc/lxc.xibuild | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 repo/lxc/lxc.xibuild (limited to 'repo/lxc/lxc.xibuild') diff --git a/repo/lxc/lxc.xibuild b/repo/lxc/lxc.xibuild new file mode 100644 index 0000000..e50de42 --- /dev/null +++ b/repo/lxc/lxc.xibuild @@ -0,0 +1,42 @@ +#!/bin/sh + +NAME="lxc" +DESC="Userspace interface for the Linux kernel containment features" + +MAKEDEPS="libcap libseccomp pam linux-headers musl-legacy-compat docbook2x automake autoconf libtool perl-xml-namespacesupport" + +PKG_VER=4.0.12 +SOURCE="https://linuxcontainers.org/downloads/lxc/lxc-$PKG_VER.tar.gz" + +ADDITIONAL=" +lxc.confd +lxc.initd +" + +build() { + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-apparmor \ + --enable-pam \ + --with-distro=xi \ + --disable-werror \ + --enable-doc + make +} + +check() { + make check +} + +package() { + make DESTDIR="$PKG_DEST" install + + install -Dm755 "$BUILD_ROOT"/lxc.initd "$PKG_DEST"/etc/init.d/lxc + install -Dm644 "$BUILD_ROOT"/lxc.confd "$PKG_DEST"/etc/conf.d/lxc + install -d "$PKG_DEST"/var/lib/lxc + + # Remove useless config for SysVinit. + rm -r "$PKG_DEST"/etc/default +} -- cgit v1.2.1