forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
games-server/bedrock-server: bump to version 1.16.201.03
Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Conrad Kostecki <[email protected]>
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST bedrock-server-1.16.201.02.zip 89832697 BLAKE2B 055d19866daabf8479fa051dd9ddec0b89e620c02713cf6b98299eaa9b1423c92fa15bdf0a2203e9580ce38e82321e2f2b5420ad11ea45bb01606487c5477a01 SHA512 6238dfccde26780d22337a7f0a1e1fbe75b86e43c4ecd77a551dc7d31bf22fad3705f0f9e328c00cf5ffbee252a70e94f586606aa26e23b32101e3e6a23636a3 | ||
DIST bedrock-server-1.16.201.03.zip 89834789 BLAKE2B ccc0c7de99765cc8e609a213c0d061232dd545a45508635853bcb2540c502a931b9efcb28132728f589e728400e619bf20d4ce5f34158d807802806dd8e65f98 SHA512 b962cbf4ea912b93404945a6d5ea799a4c2c2eec3e8cbac8903511002934b98c6385752b3a723e0e6548f2fa3a046706d3db126596b5b8c90e35635921f9eb20 |
53 changes: 53 additions & 0 deletions
53
games-server/bedrock-server/bedrock-server-1.16.201.03.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
DESCRIPTION="The official bedrock (non-java) based server for the sandbox video game" | ||
HOMEPAGE="https://www.minecraft.net/" | ||
SRC_URI="https://minecraft.azureedge.net/bin-linux/${P}.zip" | ||
|
||
LICENSE="Mojang" | ||
SLOT="0" | ||
KEYWORDS="-* ~amd64" | ||
|
||
RDEPEND=" | ||
acct-group/bedrock | ||
acct-user/bedrock | ||
app-misc/dtach | ||
dev-libs/openssl:0/1.1 | ||
net-misc/curl[ssl] | ||
" | ||
|
||
BDEPEND="app-arch/unzip" | ||
|
||
RESTRICT="bindist mirror" | ||
|
||
S="${WORKDIR}" | ||
|
||
DOCS=( | ||
"bedrock_server_how_to.html" | ||
"release-notes.txt" | ||
) | ||
|
||
QA_PREBUILT=" | ||
opt/bedrock-server/bedrock_server | ||
opt/bedrock-server/libCrypto.so | ||
" | ||
|
||
src_install() { | ||
exeinto /opt/bedrock-server | ||
doexe bedrock_server libCrypto.so | ||
|
||
insinto /opt/bedrock-server | ||
doins {permissions,whitelist}.json server.properties | ||
doins -r {behavior,resource}_packs definitions structures | ||
|
||
dodir /opt/bin | ||
dosym ../bedrock-server/bedrock_server /opt/bin/bedrock-server | ||
|
||
newinitd "${FILESDIR}"/bedrock-server.initd-r2 bedrock-server | ||
newconfd "${FILESDIR}"/bedrock-server.confd bedrock-server | ||
|
||
einstalldocs | ||
} |