contrib/lxc/Pkgfile
2015-05-31 22:37:52 +02:00

27 lines
679 B
Plaintext

# Description: container namespace cgroup virtualisation for linux guests
# URL: http://lxc.sf.net
# Maintainer: Thomas Penteker, tek at serverop dot de
name=lxc
version=1.1.2
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
}