games-util/r2modman-bin: new package, add 3.1.45
Signed-off-by: Gonçalo Negrier Duarte <gonegrier.duarte@gmail.com>
1
games-util/r2modman-bin/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST r2modman-bin-3.1.45.tar.gz 113307930 BLAKE2B 9986a264b1feae0bb3189c866734e193a4cfb674681e6f1b4c3c002a963d784aa02bada90598d386ea0a3a2dbbf1dcc0c838780605e8b9d3f3557648320c4920 SHA512 15703a27066f33f6f3945df06cbbd922e13f8eae018ca6dc94068fee4ecdb492472add5f53bc037fef404c8c10dc15de13e2e0de52338b2d33fd4490ad85ed53
|
||||
BIN
games-util/r2modman-bin/files/r2modman-128x128.png
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
games-util/r2modman-bin/files/r2modman-16x16.png
Normal file
|
After Width: | Height: | Size: 630 B |
BIN
games-util/r2modman-bin/files/r2modman-192x192.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
games-util/r2modman-bin/files/r2modman-24x24.png
Normal file
|
After Width: | Height: | Size: 949 B |
BIN
games-util/r2modman-bin/files/r2modman-256x256.png
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
BIN
games-util/r2modman-bin/files/r2modman-32x32.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
games-util/r2modman-bin/files/r2modman-48x48.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
games-util/r2modman-bin/files/r2modman-64x64.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
games-util/r2modman-bin/files/r2modman-96x96.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
15
games-util/r2modman-bin/files/r2modman.desktop
Normal 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;
|
||||
11
games-util/r2modman-bin/metadata.xml
Normal 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>
|
||||
46
games-util/r2modman-bin/r2modman-bin-3.1.45.ebuild
Normal 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
|
||||
}
|
||||