contrib/lxc/Pkgfile

27 lines
679 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
2016-02-11 01:05:19 +01:00
version=1.1.5
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
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
}