summaryrefslogtreecommitdiff
path: root/lxc/Pkgfile
blob: b04ecb5e839edb83ac2e8ff503d6769208dc61f0 (plain)
    1 # Description: container namespace cgroup virtualisation for linux guests
    2 # URL:         https://linuxcontainers.org/lxc
    3 # Maintainer:  Thomas Penteker, tek at serverop dot de
    4 
    5 name=lxc
    6 version=2.0.4
    7 release=1
    8 source=(http://lxc.sourceforge.net/download/lxc-$version.tar.gz
    9         man-pages.tar.xz)
   10 
   11 build() {
   12   cd $name-$version
   13   ./configure --prefix=/usr \
   14               --mandir=/usr/man \
   15               --libexecdir=/usr/lib \
   16               --sysconfdir=/etc
   17 
   18   make
   19   make DESTDIR=$PKG install
   20   
   21   install -d $PKG/usr/man 
   22 
   23   mv $SRC/man* $PKG/usr/man
   24   rm -rf $PKG/usr/lib/lxc/rootfs/README $PKG/usr/share/doc
   25   rm -rf $PKG/etc/default $PKG/usr/share/lxc/config/common.conf.d/README
   26 }

Generated by cgit