mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-21 06:28:06 +02:00
Closes: https://bugs.gentoo.org/show_bug.cgi?id=939688 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
# Copyright 1999-2024 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}/dist/Geekbench-${PV}-Linux"
|
|
|
|
LICENSE="geekbench"
|
|
SLOT="3"
|
|
KEYWORDS="-* amd64 x86"
|
|
|
|
RESTRICT="bindist mirror"
|
|
|
|
QA_PREBUILT="opt/geekbench3/geekbench opt/geekbench3/geekbench_x86_32 opt/geekbench3/geekbench_x86_64"
|
|
|
|
pkg_nofetch() {
|
|
elog "Please download ${A} from ${HOMEPAGE}/${PN}3/download/linux"
|
|
elog "and place it in your DISTDIR directory."
|
|
}
|
|
|
|
src_install() {
|
|
exeinto /opt/geekbench3
|
|
doexe geekbench geekbench_x86_$(usex amd64 64 32)
|
|
|
|
insinto /opt/geekbench3
|
|
doins geekbench.plar
|
|
|
|
dodir /opt/bin
|
|
dosym ../geekbench3/geekbench /opt/bin/geekbench3
|
|
}
|
|
|
|
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 "geekbench3 -r <email address> <license key>"
|
|
}
|