diff options
author | Vitaly Zdanevich <zdanevich.vitaly@ya.ru> | 2024-03-11 09:42:33 +0400 |
---|---|---|
committer | Vitaly Zdanevich <zdanevich.vitaly@ya.ru> | 2024-03-11 09:42:33 +0400 |
commit | 308a5510df8a218870f4d0c4c1197b860ea5b177 (patch) | |
tree | 2db9b7e91ca07cc7b93d507c903a9c4952e0f201 /games-emulation | |
parent | net-im/pop: Add RDEPEND (diff) | |
download | guru-308a5510df8a218870f4d0c4c1197b860ea5b177.tar.gz guru-308a5510df8a218870f4d0c4c1197b860ea5b177.tar.bz2 guru-308a5510df8a218870f4d0c4c1197b860ea5b177.zip |
games-emulation/conty: fix einfo executable name
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/conty/conty-1.25.1.ebuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/games-emulation/conty/conty-1.25.1.ebuild b/games-emulation/conty/conty-1.25.1.ebuild index 45b0f880d..6a850dbc5 100644 --- a/games-emulation/conty/conty-1.25.1.ebuild +++ b/games-emulation/conty/conty-1.25.1.ebuild @@ -8,7 +8,9 @@ HOMEPAGE="https://github.com/Kron4ek/Conty" inherit linux-info -SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${PN}_lite_dwarfs.sh" +NAME="${PN}_lite_dwarfs.sh" + +SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${NAME}" KEYWORDS="~amd64" LICENSE="MIT" @@ -28,9 +30,9 @@ src_install() { } pkg_postinst() { - einfo "How to use: $ ./conty.sh [command] [command_arguments]" - einfo "For example: ./conty.sh steam" + einfo "How to use: $ ${NAME} [command] [command_arguments]" + einfo "For example: ${NAME} steam" einfo "or" - einfo "WINEPREFIX=$HOME/wine-conty ./conty.sh gamescope -f -- wine ./game.exe" + einfo "WINEPREFIX=$HOME/wine-conty ${NAME} gamescope -f -- wine ./game.exe" } |