32 lines
1.1 KiB
Bash
32 lines
1.1 KiB
Bash
TERMUX_PKG_HOMEPAGE=http://linuxcontainers.org/
|
|
TERMUX_PKG_DESCRIPTION="Linux Containers"
|
|
TERMUX_PKG_LICENSE="LGPL-2.1"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
# v3.1.0 is the last version confirmed to work.
|
|
# Do not update it unless you tested it on your device.
|
|
TERMUX_PKG_VERSION=1:3.1.0
|
|
TERMUX_PKG_REVISION=2
|
|
TERMUX_PKG_SRCURL=https://linuxcontainers.org/downloads/lxc/lxc-${TERMUX_PKG_VERSION:2}.tar.gz
|
|
TERMUX_PKG_SHA256=4d8772c25baeaea2c37a954902b88c05d1454c91c887cb6a0997258cfac3fdc5
|
|
TERMUX_PKG_DEPENDS="gnupg, libcap, libseccomp, rsync, wget"
|
|
TERMUX_PKG_BREAKS="lxc-dev"
|
|
TERMUX_PKG_REPLACES="lxc-dev"
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--with-distro=termux
|
|
--with-runtime-path=$TERMUX_PREFIX/var/run
|
|
--disable-apparmor
|
|
--disable-selinux
|
|
--enable-seccomp
|
|
--enable-capabilities
|
|
--disable-examples
|
|
--disable-werror
|
|
"
|
|
|
|
termux_step_post_make_install() {
|
|
# Simple helper script for mounting cgroups.
|
|
install -Dm755 "$TERMUX_PKG_BUILDER_DIR"/lxc-setup-cgroups.sh \
|
|
"$TERMUX_PREFIX"/bin/lxc-setup-cgroups
|
|
sed -i "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" "$TERMUX_PREFIX"/bin/lxc-setup-cgroups
|
|
}
|