forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
geekbench-3.4.2.ebuild
40 lines (29 loc) · 1.1 KB
/
geekbench-3.4.2.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
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"
KEYWORDS="-* amd64 x86"
LICENSE="geekbench"
SLOT="3"
RESTRICT="bindist fetch mirror strip"
S="${WORKDIR}/dist/Geekbench-${PV}-Linux"
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_32" "geekbench_x86_64"
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>"
}