contrib/lxc/Pkgfile

26 lines
606 B
Plaintext
Raw Normal View History

2013-04-13 14:26:39 +02:00
# Description: container namespace cgroup virtualisation for linux guests
# URL: http://lxc.sf.net
# Maintainer: Thomas Penteker, tek at serverop dot de
name=lxc
2014-04-29 14:46:52 +02:00
version=1.0.3
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() {
cd $name-$version
./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
2013-04-13 14:26:39 +02:00
}