diff options
author | 2024-04-28 01:18:34 +0200 | |
---|---|---|
committer | 2024-05-13 18:18:20 -0400 | |
commit | d6ae7d0c076c6f3e25baddcc28d31b6e7b05f5cc (patch) | |
tree | 33de9196b9bf108bf4da7606b99327ba2c5f1af9 /games-rpg/snoot-game/snoot-game-1.9.1.ebuild | |
parent | dev-vcs/*: fix variable order (diff) | |
download | guru-d6ae7d0c076c6f3e25baddcc28d31b6e7b05f5cc.tar.gz guru-d6ae7d0c076c6f3e25baddcc28d31b6e7b05f5cc.tar.bz2 guru-d6ae7d0c076c6f3e25baddcc28d31b6e7b05f5cc.zip |
games-*/*: fix variable order
I manually went through some entries for `pkgcheck scan -c
VariableOrderCheck`.
Misc updates:
UnusedEclassesCheck
RESTRICT+=" .." -> RESTRICT=".."
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
Signed-off-by: Julien Roy <julien@jroy.ca>
Diffstat (limited to 'games-rpg/snoot-game/snoot-game-1.9.1.ebuild')
-rw-r--r-- | games-rpg/snoot-game/snoot-game-1.9.1.ebuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/games-rpg/snoot-game/snoot-game-1.9.1.ebuild b/games-rpg/snoot-game/snoot-game-1.9.1.ebuild index 92b411518..8585897b5 100644 --- a/games-rpg/snoot-game/snoot-game-1.9.1.ebuild +++ b/games-rpg/snoot-game/snoot-game-1.9.1.ebuild @@ -6,23 +6,25 @@ EAPI=8 PYTHON_COMPAT=( python3_{10,11,12} ) inherit python-single-r1 desktop wrapper +MY_PV="Patch8_NewYears" + DESCRIPTION="Visual novel parody of Goodbye Volcano High" -MY_PV="Patch9.1-RoastedLaika" HOMEPAGE="https://snootgame.xyz/" SRC_URI="https://snootgame.xyz/bin/SnootGame-${MY_PV}-linux.tar.bz2" +S="${WORKDIR}/SnootGame-${MY_PV}-linux/" + LICENSE="AGPL-3 CC-BY-SA-4.0" SLOT="0" KEYWORDS="~amd64" + REQUIRED_USE="${PYTHON_REQUIRED_USE}" +RESTRICT="strip" RDEPEND="${PYTHON_DEPS} virtual/opengl" BDEPEND="${RDEPEND}" -S="${WORKDIR}/SnootGame-${MY_PV}-linux/" - QA_PREBUILT="*" -RESTRICT+=" strip" src_install() { local dir=/opt/${PN} |