diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-10-29 23:35:30 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-10-29 23:36:08 +0200 |
commit | 8de26189e2b26b44a02366c17df97e5af97e23d5 (patch) | |
tree | b789604573f3e7a51a02c78a202e3fef8eb52d06 /app-benchmarks/geekbench/geekbench-2.4.3-r1.ebuild | |
parent | app-benchmarks/geekbench: bump to version 5.4.2 (diff) | |
download | gentoo-8de26189e2b26b44a02366c17df97e5af97e23d5.tar.gz gentoo-8de26189e2b26b44a02366c17df97e5af97e23d5.tar.bz2 gentoo-8de26189e2b26b44a02366c17df97e5af97e23d5.zip |
app-benchmarks/geekbench: bump to EAPI8
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-benchmarks/geekbench/geekbench-2.4.3-r1.ebuild')
-rw-r--r-- | app-benchmarks/geekbench/geekbench-2.4.3-r1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-benchmarks/geekbench/geekbench-2.4.3-r1.ebuild b/app-benchmarks/geekbench/geekbench-2.4.3-r1.ebuild new file mode 100644 index 000000000000..57304c2b28df --- /dev/null +++ b/app-benchmarks/geekbench/geekbench-2.4.3-r1.ebuild @@ -0,0 +1,39 @@ +# 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.primatelabs.com/Geekbench-${PV}-Linux.tar.gz" +S="${WORKDIR}/dist/Geekbench-${PV}-Linux" + +KEYWORDS="-* amd64 x86" +LICENSE="geekbench" +SLOT="2" + +RESTRICT="bindist mirror" + +QA_PREBUILT="opt/geekbench2/geekbench opt/geekbench2/geekbench_x86_32 opt/geekbench2/geekbench_x86_64" + +pkg_nofetch() { + elog "Please download ${A} from ${HOMEPAGE}/${PN}2/download/linux" + elog "and place it in your DISTDIR directory." +} + +src_install() { + exeinto /opt/geekbench2 + doexe geekbench geekbench_x86_32 geekbench_x86_64 + + insinto /opt/geekbench2 + doins geekbench.plar + + dodir /opt/bin + dosym ../geekbench2/geekbench /opt/bin/geekbench2 +} + +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 "geekbench2 -r <email address> <license key>" +} |