blob: 75926895d6b98d0130c97da7b17287f2cb4fae56 (
plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit xdg optfeature
DESCRIPTION="A Wine+Roblox management application"
HOMEPAGE="https://gitlab.com/brinkervii/grapejuice.git"
SRC_URI="https://gitlab.com/brinkervii/grapejuice/-/archive/v${PV}/grapejuice-v${PV}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="-* ~amd64"
RESTRICT="mirror"
DEPEND="sys-devel/gettext
dev-vcs/git
dev-python/pip
x11-libs/cairo
x11-libs/gtk+
dev-libs/gobject-introspection
dev-util/desktop-file-utils
x11-misc/xdg-utils
x11-misc/xdg-user-dirs
dev-util/gtk-update-icon-cache
x11-misc/shared-mime-info
x11-apps/mesa-progs"
RDEPEND="
${DEPEND}
virtual/wine"
src_unpack() {
default
mv "${WORKDIR}/grapejuice-v${PV}" "${S}"
}
src_compile() {
cd "${S}"
export PYTHONPATH="${S}/src"
python3 -m grapejuice_packaging linux_package
}
src_install() {
export PYTHON_VERSION=$(python3 -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")')
tar -xf "${S}/dist/linux_package/*.tar.gz" -C "${D}"
mv "${D}/usr/lib/python3/dist-packages" "${D}/usr/lib/python${PYTHON_VERSION}"
rm -r "${D}/usr/lib/python3"
default
}
pkg_postinst() {
optfeature "Required for PRIME systems running XOrg, where XRandR based profiling is desired" x11-apps/xrandr
}
|