blob: e50de426520653c99f3923573a769d8c074bfb5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
}
|