contrib/lxc/Pkgfile
2016-08-29 22:47:43 +02:00

27 lines
694 B
Plaintext

# Description: container namespace cgroup virtualisation for linux guests
# URL: https://linuxcontainers.org/lxc
# Maintainer: Thomas Penteker, tek at serverop dot de
name=lxc
version=2.0.4
release=1
source=(http://lxc.sourceforge.net/download/lxc-$version.tar.gz
man-pages.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/man \
--libexecdir=/usr/lib \
--sysconfdir=/etc
make
make DESTDIR=$PKG install
install -d $PKG/usr/man
mv $SRC/man* $PKG/usr/man
rm -rf $PKG/usr/lib/lxc/rootfs/README $PKG/usr/share/doc
rm -rf $PKG/etc/default $PKG/usr/share/lxc/config/common.conf.d/README
}