Hi. I don't see any votes for this package and I don't need it anymore. That's why I am going to disown it and recommend for deletion if nobody wants to take ownership.
Search Criteria
Package Details: lxc0.8 1:0.8.0-4
Package Actions
| Package Base: | lxc0.8 |
|---|---|
| Description: | Linux Containers |
| Upstream URL: | http://linuxcontainers.org/ |
| Category: | lib |
| Licenses: | |
| Submitter: | sarum9in |
| Maintainer: | None |
| Last Packager: | None |
| Votes: | 0 |
| First Submitted: | 2013-09-26 12:19 |
| Last Updated: | 2013-11-26 13:32 |
Required by (0)
Sources
Latest Comments
Comment by sarum9in
Comment by sarum9in
Updated to http://linuxcontainers.org/ .
Comment by jaxxed
The lxc project has moves to github:
git clone git://github.com/lxc/lxc
See their site:
http://linuxcontainers.org/
And downloadables here:
http://linuxcontainers.org/downloads/
Comment by jaxxed
You can use this for 0.9
_pkgname=lxc
pkgname=${_pkgname}0.9
pkgver=0.9.0
epoch=1
pkgrel=2
pkgdesc="Linux Containers"
arch=('i686' 'x86_64')
url="http://lxc.sourceforge.net/"
depends=('bash' 'perl')
conflicts=('lxc')
provides=('lxc')
license=('LGPL')
source=("http://linuxcontainers.org/downloads/$_pkgname-${pkgver/_/-}.tar.gz")
md5sums=('8552A4479090616F4BC04D8473765FC9')
build() {
cd "$srcdir/$_pkgname-${pkgver/_/-}"
./configure \
--prefix=/usr \
--localstatedir=/var \
--libexecdir=/usr/bin \
--sysconfdir=/etc \
--disable-apparmor \
--disable-doc
make
}
package() {
cd "$srcdir/$_pkgname-${pkgver/_/-}"
make DESTDIR="$pkgdir" install
install -d -m755 "$pkgdir/var/lib/lxc"
cd doc
find . -type f -name '*.1' -exec install -D -m644 "{}" "$pkgdir/usr/share/man/man1/{}" \;
find . -type f -name '*.5' -exec install -D -m644 "{}" "$pkgdir/usr/share/man/man5/{}" \;
find . -type f -name '*.7' -exec install -D -m644 "{}" "$pkgdir/usr/share/man/man7/{}" \;
}