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.
app-benchmarks/geekbench: bump to version 5.0.0
Starting with 5.0.0, support for x86 has been dropped by upstream. Package-Manager: Portage-2.3.72, Repoman-2.3.17 Signed-off-by: Conrad Kostecki <[email protected]> Closes: gentoo#12874 Signed-off-by: Joonas Niilola <[email protected]>
- Loading branch information
Showing
2 changed files
with
44 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
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,43 @@ | ||
# Copyright 1999-2019 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
DESCRIPTION="A Cross-Platform Benchmark for Android, iOS, Linux, MacOS and Windows" | ||
HOMEPAGE="https://www.geekbench.com" | ||
SRC_URI="https://cdn.geekbench.com/Geekbench-${PV}-Linux.tar.gz" | ||
|
||
KEYWORDS="-* ~amd64" | ||
LICENSE="geekbench" | ||
SLOT="5" | ||
|
||
RESTRICT="bindist fetch mirror strip" | ||
|
||
S="${WORKDIR}/Geekbench-${PV}-Linux" | ||
|
||
QA_PREBUILT=" | ||
opt/geekbench5/geekbench5 | ||
opt/geekbench5/geekbench_x86_64 | ||
" | ||
|
||
pkg_nofetch() { | ||
elog "Please download ${A} from ${HOMEPAGE}/download/linux" | ||
elog "and place it in your DISTDIR directory." | ||
} | ||
|
||
src_install() { | ||
exeinto /opt/geekbench5 | ||
doexe geekbench5 geekbench_x86_64 | ||
|
||
insinto /opt/geekbench5 | ||
doins geekbench.plar | ||
|
||
dodir /opt/bin | ||
dosym ../geekbench5/geekbench5 /opt/bin/geekbench5 | ||
} | ||
|
||
pkg_postinst() { | ||
elog "If you have purchased a commercial license, you can enter" | ||
elog "your email address and your license key with the following command:" | ||
elog "geekbench5 -r <email address> <license key>" | ||
} |