59 lines
1.7 KiB
Bash
59 lines
1.7 KiB
Bash
# Template file for 'lxc'
|
|
_desc="Linux Containers"
|
|
|
|
pkgname=lxc
|
|
version=3.2.1
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--enable-doc --enable-seccomp
|
|
--enable-capabilities --enable-apparmor --with-distro=none
|
|
--with-rootfs-path=/var/lxc/containers --with-log-path=/var/lxc/log"
|
|
hostmakedepends="automake libtool pkg-config docbook2x"
|
|
makedepends="libcap-devel libseccomp-devel gnutls-devel libapparmor-devel"
|
|
depends="xz gnupg"
|
|
short_desc="${_desc} - utilities"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
homepage="https://linuxcontainers.org"
|
|
license="LGPL-2.1-or-later"
|
|
distfiles="https://linuxcontainers.org/downloads/lxc-${version}.tar.gz"
|
|
checksum=5f903986a4b17d607eea28c0aa56bf1e76e8707747b1aa07d31680338b1cc3d4
|
|
|
|
conf_files="/etc/lxc/default.conf"
|
|
make_dirs="
|
|
/var/lib/lxc 0755 root root
|
|
/var/lxc/containers 0755 root root
|
|
/var/lxc/log 0755 root root"
|
|
|
|
pre_configure() {
|
|
# make sure the build uses the new docbook2x format,
|
|
# even though the command has the old "docbook2man" name
|
|
sed -e 's,xdocbook2man,xforcedocbook2x,g' -i configure.ac
|
|
./autogen.sh
|
|
}
|
|
|
|
post_install() {
|
|
vmkdir usr/share/bash-completion/completions
|
|
mv ${DESTDIR}/etc/bash_completion.d/* ${DESTDIR}/usr/share/bash-completion/completions/
|
|
# Install void lxc config/template.
|
|
vinstall ${FILESDIR}/void.common.conf 644 usr/share/lxc/config
|
|
vinstall ${FILESDIR}/lxc-void 755 usr/share/lxc/templates
|
|
vsv lxc-autostart
|
|
}
|
|
|
|
liblxc_package() {
|
|
short_desc="${_desc} - shared library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
|
|
lxc-devel_package() {
|
|
depends="libcap-devel liblxc>=${version}_${revision}"
|
|
short_desc="${_desc} - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
vmove "usr/lib/*.a"
|
|
}
|
|
}
|