Bump to version 3.8.6

This commit is contained in:
Sheldon Lee 2022-10-06 20:58:13 +01:00
parent 0d6911ac73
commit fed2a32982
3 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,9 @@
DEFINED_PHASES=install prepare unpack
DESCRIPTION=A Discord and Fosscord client implemented directly without Discord API.
EAPI=8
HOMEPAGE=https://github.com/SpacingBat3/WebCord
KEYWORDS=~amd64
LICENSE=MIT
SLOT=0
SRC_URI=https://github.com/SpacingBat3/WebCord/releases/download/v3.8.6/WebCord-3.8.6-x64.AppImage
_md5_=52579231c73f87a29455fe138d3697f1

View File

@ -1 +1,2 @@
DIST WebCord-3.8.3-x64.AppImage 103695552 BLAKE2B 90fc5a7dd9eb0e159fddfa01b6cdc50df7a481eefc99bc83950a0a425ae94d46c5024f8d16e9799e19029997862326f619e5d209efac0b54792afc4fd3269165 SHA512 b7517ac295a678e7668fb6acad0aab28ba4e144b73e5e5005202f68c8087158be0db6b0ae2d8fde4c8568d2768c090c3f174a4709fe461a5d83ff1af110c4528 DIST WebCord-3.8.3-x64.AppImage 103695552 BLAKE2B 90fc5a7dd9eb0e159fddfa01b6cdc50df7a481eefc99bc83950a0a425ae94d46c5024f8d16e9799e19029997862326f619e5d209efac0b54792afc4fd3269165 SHA512 b7517ac295a678e7668fb6acad0aab28ba4e144b73e5e5005202f68c8087158be0db6b0ae2d8fde4c8568d2768c090c3f174a4709fe461a5d83ff1af110c4528
DIST WebCord-3.8.6-x64.AppImage 105657536 BLAKE2B 593d8f5e43f2da2ea2ca4fedfaf462a707a09b375eeb9ca2fc465955f7372510e7a6de2536dfeec8b5945d3f2e5645846aac351cfe60bf5d26d9c02fe338ef7b SHA512 3329d94429714e30d0cc44a307eca2788e96600d4f1a991996200e0f62395f409c211f214cc4a5d03f123f479360332233a0f2c0d22cd50461c0cc0dcf050bbc

View File

@ -0,0 +1,53 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A Discord and Fosscord client implemented directly without Discord API."
HOMEPAGE="https://github.com/SpacingBat3/WebCord"
SRC_URI="https://github.com/SpacingBat3/WebCord/releases/download/v${PV}/WebCord-${PV}-x64.AppImage"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
src_unpack() {
mkdir "${S}" || die
cp "${DISTDIR}/${A}" "${S}" || die
}
src_prepare() {
chmod +x ${A}
./${A} --appimage-extract || die "Extraction Failed"
default
# Edit files to reflect naming.
sed -i -e "s/lib\/webcord/lib\/${PN}/" "squashfs-root/usr/bin/webcord" || die "Sed failed!"
sed -i -e "s/webcord/${PN}/" "squashfs-root/WebCord.desktop" || die "Sed failed!"
sed -i -e "s/\.\/${PN}.png/${PN}/" "squashfs-root/WebCord.desktop" || die "Sed failed!"
mv "squashfs-root/usr/lib/webcord" "squashfs-root/usr/lib/${PN}" || die
# Move executable out to be installed as executable later.
mv "squashfs-root/usr/lib/${PN}/webcord" ./ || die
}
src_install() {
exeinto "/usr/bin"
newexe "squashfs-root/usr/bin/webcord" "${PN}"
insinto "/usr/lib"
doins -r "squashfs-root/usr/lib/${PN}"
exeinto "/usr/lib/${PN}"
doexe "webcord"
insinto "/usr/share/applications"
newins "squashfs-root/WebCord.desktop" "${PN}.desktop"
insinto "/usr/share/pixmaps"
newins "squashfs-root/webcord.png" "${PN}.png"
}