diff options
Diffstat (limited to 'community/lxc/PKGBUILD')
-rw-r--r-- | community/lxc/PKGBUILD | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/community/lxc/PKGBUILD b/community/lxc/PKGBUILD index acb86e5ae..618c70728 100644 --- a/community/lxc/PKGBUILD +++ b/community/lxc/PKGBUILD @@ -1,28 +1,29 @@ -# $Id: PKGBUILD 74427 2012-07-28 09:35:36Z spupykin $ +# $Id: PKGBUILD 80003 2012-11-15 11:55:57Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Andrea Zucchelli <zukka77@gmail.com> # Contributor: Jonathan Liu <net147@gmail.com> # Maintainer: Jon Nordby <jononor@gmail.com> pkgname=lxc -pkgver=0.8.0_rc2 -pkgrel=1 +pkgver=0.8.0 +epoch=1 +pkgrel=2 pkgdesc="Linux Containers" arch=('i686' 'x86_64' 'mips64el') url="http://lxc.sourceforge.net/" depends=('bash' 'perl') license=('LGPL') source=("http://lxc.sourceforge.net/download/lxc/$pkgname-${pkgver/_/-}.tar.gz") -md5sums=('9bd6988542fd7dd198d056ef3a2db9f6') +md5sums=('7304fa57146ce687f749b5df876bb20d') build() { cd "$srcdir/$pkgname-${pkgver/_/-}" - ./configure \ --prefix=/usr \ --localstatedir=/var \ --libexecdir=/usr/bin \ --sysconfdir=/etc \ + --disable-apparmor \ --disable-doc make } |