games-util/r2modman-bin: new package, add 3.1.45

Signed-off-by: Gonçalo Negrier Duarte <gonegrier.duarte@gmail.com>
This commit is contained in:
Gonçalo Negrier Duarte
2023-12-28 15:58:04 +00:00
parent 0be7cfbe36
commit 9320395a5b
13 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST r2modman-bin-3.1.45.tar.gz 113307930 BLAKE2B 9986a264b1feae0bb3189c866734e193a4cfb674681e6f1b4c3c002a963d784aa02bada90598d386ea0a3a2dbbf1dcc0c838780605e8b9d3f3557648320c4920 SHA512 15703a27066f33f6f3945df06cbbd922e13f8eae018ca6dc94068fee4ecdb492472add5f53bc037fef404c8c10dc15de13e2e0de52338b2d33fd4490ad85ed53

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 630 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 949 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -0,0 +1,15 @@
[Desktop Entry]
Comment=A simple and easy to use mod manager for several Unity games using Thunderstore.
Encoding=UTF-8
Exec=env DESKTOPINTEGRATION=false GDK_BACKEND=x11 /opt/r2modman/r2modman
Icon=r2modman
StartupWMClass=r2modman
Name=r2modman
StartupNotify=true
Terminal=false
Type=Application
Version=pkgversion
X-AppImage-Version=pkgversion
X-KDE-SubstituteUID=false
MimeType=x-scheme-handler/ror2mm;
Categories=Game;

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>gonegrier.duarte@gmail.com</email>
<name>Gonçalo Negrier Duarte</name>
</maintainer>
<upstream>
<remote-id type="github">ebkr/r2modmanPlus</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,46 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
M_PN=r2modman
inherit desktop xdg
SRC_URI="https://github.com/ebkr/${M_PN}Plus/releases/download/v${PV}/${M_PN}-${PV}.tar.gz -> ${P}.tar.gz"
DESCRIPTION="A simple and easy to use mod manager for several games using Thunderstore"
HOMEPAGE="https://github.com/ebkr/r2modmanPlus"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${M_PN}-${PV}"
src_install() {
## Install binaries file
cp -r "${S}" "${WORKDIR}/${M_PN}" #Fix folder name
insinto /opt
doins -r "${WORKDIR}/${M_PN}"
fperms 755 "/opt/${M_PN}/r2modman"
## Install desktop and icon file
# Copy and fix version on desktop file version
domenu "${FILESDIR}/${M_PN}".desktop
sed -i 's/Version=pkgversion/Version='${PV}'/g' "${D}/usr/share/applications/${M_PN}".desktop
sed -i 's/X-AppImage-Version=pkgversion/X-AppImage-Version='${PV}'/g' "${D}/usr/share/applications/${M_PN}".desktop
# Install icons
newicon -s 16 "${FILESDIR}/${M_PN}"-16x16.png "${M_PN}".png
newicon -s 32 "${FILESDIR}/${M_PN}"-32x32.png "${M_PN}".png
newicon -s 48 "${FILESDIR}/${M_PN}"-48x48.png "${M_PN}".png
newicon -s 64 "${FILESDIR}/${M_PN}"-64x64.png "${M_PN}".png
newicon -s 96 "${FILESDIR}/${M_PN}"-96x96.png "${M_PN}".png
newicon -s 128 "${FILESDIR}/${M_PN}"-128x128.png "${M_PN}".png
newicon -s 192 "${FILESDIR}/${M_PN}"-192x192.png "${M_PN}".png
newicon -s 256 "${FILESDIR}/${M_PN}"-256x256.png "${M_PN}".png
}
pkg_postinst() {
xdg_desktop_database_update
}