2013-04-13 14:26:39 +02:00
|
|
|
# Description: container namespace cgroup virtualisation for linux guests
|
2016-08-29 22:47:43 +02:00
|
|
|
# URL: https://linuxcontainers.org/lxc
|
2013-04-13 14:26:39 +02:00
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
|
|
|
|
|
|
name=lxc
|
2017-03-04 01:54:20 +01:00
|
|
|
version=2.0.7
|
2013-04-13 14:26:39 +02:00
|
|
|
release=1
|
2013-11-11 01:44:36 +01:00
|
|
|
source=(http://lxc.sourceforge.net/download/lxc-$version.tar.gz
|
2013-04-13 14:26:39 +02:00
|
|
|
man-pages.tar.xz)
|
|
|
|
|
|
|
|
build() {
|
2016-08-29 22:47:43 +02:00
|
|
|
cd $name-$version
|
2013-04-13 14:26:39 +02:00
|
|
|
./configure --prefix=/usr \
|
2013-04-13 14:28:37 +02:00
|
|
|
--mandir=/usr/man \
|
2014-02-24 18:03:07 +01:00
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
--sysconfdir=/etc
|
2013-04-13 14:26:39 +02:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
2014-02-24 18:03:07 +01:00
|
|
|
install -d $PKG/usr/man
|
|
|
|
|
2013-04-13 14:26:39 +02:00
|
|
|
mv $SRC/man* $PKG/usr/man
|
2014-02-24 18:03:07 +01:00
|
|
|
rm -rf $PKG/usr/lib/lxc/rootfs/README $PKG/usr/share/doc
|
2015-05-31 22:37:52 +02:00
|
|
|
rm -rf $PKG/etc/default $PKG/usr/share/lxc/config/common.conf.d/README
|
2013-04-13 14:26:39 +02:00
|
|
|
}
|