26 lines
606 B
Plaintext
26 lines
606 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.0.3
|
|
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
|
|
}
|