diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-12-23 20:17:49 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-12-23 20:17:49 +0100 |
commit | 4054d4dcab896f2134995c2044e9bc7b2ae3fd4a (patch) | |
tree | 0c110e3cd3275512274026b18e1d0e818f8a0940 /app-benchmarks/geekbench/geekbench-5.4.4.ebuild | |
parent | games-simulation/openrct2: update objects for live version (diff) | |
download | gentoo-4054d4dcab896f2134995c2044e9bc7b2ae3fd4a.tar.gz gentoo-4054d4dcab896f2134995c2044e9bc7b2ae3fd4a.tar.bz2 gentoo-4054d4dcab896f2134995c2044e9bc7b2ae3fd4a.zip |
app-benchmarks/geekbench: add 5.4.4
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-benchmarks/geekbench/geekbench-5.4.4.ebuild')
-rw-r--r-- | app-benchmarks/geekbench/geekbench-5.4.4.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app-benchmarks/geekbench/geekbench-5.4.4.ebuild b/app-benchmarks/geekbench/geekbench-5.4.4.ebuild new file mode 100644 index 000000000000..099604ac1c64 --- /dev/null +++ b/app-benchmarks/geekbench/geekbench-5.4.4.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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" +S="${WORKDIR}/Geekbench-${PV}-Linux" + +KEYWORDS="-* ~amd64" +LICENSE="geekbench" +SLOT="5" + +RESTRICT="bindist mirror" + +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>" +} |