diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-11-30 08:50:21 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-11-30 08:50:21 +0000 |
commit | 9d2c0f6b324e837cfa8d7625838662e69689009c (patch) | |
tree | 1156b2a7eef6ba85392490a14f66e0c8b1efe005 /main/lxc | |
parent | a03c0a24617b559426a6093d771bba8b74dd86eb (diff) | |
download | aports-9d2c0f6b324e837cfa8d7625838662e69689009c.tar.bz2 aports-9d2c0f6b324e837cfa8d7625838662e69689009c.tar.xz |
main/lxc: clean up depends
only lxc-templates needs tar and bash
We also need to add those to makedepends so they will be built before
lxc during bootstrapping.
Diffstat (limited to 'main/lxc')
-rw-r--r-- | main/lxc/APKBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/main/lxc/APKBUILD b/main/lxc/APKBUILD index c720653a3e..3c23a274c8 100644 --- a/main/lxc/APKBUILD +++ b/main/lxc/APKBUILD @@ -4,15 +4,15 @@ pkgname=lxc pkgver=1.1.5 _mypkgver=${pkgver/_rc/.rc} -pkgrel=0 +pkgrel=1 pkgdesc="linux containers - tools" url="http://lxc.sourceforge.net/" arch="all" license="GPL" -depends="bash gzip tar" +depends="gzip" depends_dev="libcap-dev" makedepends="$depends_dev lvm2 util-linux automake autoconf libtool lua5.2-dev - linux-headers" + linux-headers bash tar" install="" options="suid" subpackages="$pkgname-dev $pkgname-doc $pkgname-lvm lua5.2-lxc:_lua52 @@ -79,6 +79,7 @@ _lua52() { templates() { pkgdesc="Templates for LXC" arch="noarch" + depends="bash tar" mkdir -p "$subpkgdir"/usr/share/lxc mv "$pkgdir"/usr/share/lxc/templates "$subpkgdir"/usr/share/lxc/ } |