diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2019-01-09 16:13:38 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-01-09 16:13:38 +0000 |
commit | 827e7ef36d5b36f496131bfacf0803119c427baf (patch) | |
tree | 0aaabada8e6af5055b31346f007c54905da689b7 /community/minetest | |
parent | 85371dbfb3c73eb2cb16029469d8de09e7c2427b (diff) | |
download | aports-827e7ef36d5b36f496131bfacf0803119c427baf.tar.bz2 aports-827e7ef36d5b36f496131bfacf0803119c427baf.tar.xz |
community/minetest: fix circular depends
Diffstat (limited to 'community/minetest')
-rw-r--r-- | community/minetest/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/community/minetest/APKBUILD b/community/minetest/APKBUILD index 882a33f280..cb0ccc9e8b 100644 --- a/community/minetest/APKBUILD +++ b/community/minetest/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Sascha Paunovic <azarus@posteo.net> pkgname=minetest pkgver=0.4.17.1 -pkgrel=3 +pkgrel=4 pkgdesc="An infinite-world block sandbox game and a game engine" url="https://minetest.net/" # luajit is not available for disabled arches @@ -53,6 +53,7 @@ build() { } common() { + depends= install -o minetest -g minetest -d "$subpkgdir"/var/lib/minetest mkdir -p "$subpkgdir/usr/share/minetest" mv "$pkgdir/usr/share/minetest/builtin" \ @@ -71,6 +72,7 @@ package() { } server(){ + depends="$pkgname-common" mkdir -p "$subpkgdir/usr/bin" cd "$builddir" install -m644 -D $pkgname.conf.example \ |