mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
42 lines
834 B
Bash
42 lines
834 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit wrapper desktop
|
|
|
|
DESCRIPTION="Re-Engineered visual novel with accessibility features"
|
|
HOMEPAGE="https://www.fhs.sh/projects"
|
|
SRC_URI="
|
|
https://github.com/fleetingheart/ksre/releases/download/v$PV/KSRE-linux.tar.bz2 -> ${P}.tar.bz2
|
|
"
|
|
S="${WORKDIR}/KSRE-linux"
|
|
|
|
LICENSE="
|
|
MPL-2.0
|
|
CC-BY-NC-ND-3.0
|
|
"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
QA_PREBUILT="*"
|
|
RESTRICT="strip"
|
|
|
|
RDEPEND="
|
|
media-libs/libglvnd[X]
|
|
"
|
|
|
|
src_install() {
|
|
insinto "/opt/${PN}"
|
|
doins -r *
|
|
|
|
fperms +x "/opt/${PN}/Katawa Shoujo Re-Engineered.sh"
|
|
fperms +x "/opt/${PN}/lib/py3-linux-x86_64/Katawa Shoujo Re-Engineered"
|
|
|
|
make_wrapper "${PN}" "/opt/${PN}/Katawa\ Shoujo\ Re-Engineered.sh"
|
|
|
|
domenu "${FILESDIR}/${PN}.desktop"
|
|
doicon "${FILESDIR}/${PN}.png"
|
|
}
|