2023-04-03 08:32:00 +02:00
|
|
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
2023-05-27 20:10:10 +02:00
|
|
|
# Contributor: Zoddo <archlinux+aur@zoddo.fr>
|
|
|
|
# Contributor: Thaodan <AUR+me@thaodan.de>
|
2023-04-03 08:32:00 +02:00
|
|
|
# Contributor: Stick <stick@stma.is>
|
|
|
|
# Contributor: johnnyapol <arch@johnnyapol.me>
|
|
|
|
# Contributor: huyizheng <huyizheng@hotmail.com>
|
|
|
|
# Contributor: Filipe Laíns (FFY00) <lains@archlinux.org>
|
|
|
|
# Contributor: Morgan <morganamilo@archlinux.org>
|
|
|
|
|
|
|
|
# Based off the discord_arch_electron_wayland PKGBUILD from Stick
|
2023-05-27 20:10:10 +02:00
|
|
|
# Based off the discord_arch_electron PKGBUILD from johnnyapol, huyizheng, Thaodan and Zoddo
|
2023-04-03 08:32:00 +02:00
|
|
|
# Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00)
|
2021-09-16 17:04:19 +02:00
|
|
|
|
|
|
|
pkgname=discord-electron
|
|
|
|
_pkgname=discord
|
2023-04-03 08:32:00 +02:00
|
|
|
_electron=22
|
2023-04-29 14:53:06 +02:00
|
|
|
pkgver=0.0.27
|
2023-06-02 21:52:11 +02:00
|
|
|
pkgrel=5
|
2023-04-03 08:32:00 +02:00
|
|
|
pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance"
|
2021-09-16 17:04:19 +02:00
|
|
|
arch=('x86_64')
|
2023-04-03 08:32:00 +02:00
|
|
|
provides=("${_pkgname}")
|
|
|
|
conflicts=("${_pkgname}")
|
|
|
|
url='https://discord.com'
|
2021-09-16 17:04:19 +02:00
|
|
|
license=('custom')
|
2023-04-03 08:32:00 +02:00
|
|
|
options=('!strip')
|
2023-05-27 20:10:10 +02:00
|
|
|
install="$pkgname.install"
|
|
|
|
depends=("electron${_electron}" 'libxss')
|
2023-04-03 08:32:00 +02:00
|
|
|
makedepends=('asar' 'curl' 'python-html2text')
|
|
|
|
optdepends=(
|
|
|
|
'libpulse: Pulseaudio support'
|
|
|
|
'xdg-utils: Open files'
|
2023-06-02 21:52:11 +02:00
|
|
|
'rizin: Allow patching Krisp support'
|
2023-04-03 08:32:00 +02:00
|
|
|
)
|
2023-05-27 20:10:10 +02:00
|
|
|
source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz"
|
|
|
|
'discord-launcher.sh')
|
|
|
|
sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f'
|
2023-06-02 21:52:11 +02:00
|
|
|
'1da218eb240901ed48c392c154d061b02024daeb02ee7d991cdbc97ecba30a6f06af25abb602880872d89dcc63a8cd4d149c12414086b081035938deff8fe26d')
|
|
|
|
|
|
|
|
_krisp_b2sum='592f55259500afc0d7fd334a10d3c1991fae05db870bf12437edc43cf693988195341f2cb827aba333c0e65fb4cb40dccfcc5d6a84dea4a1645f9563505b6496'
|
2021-09-16 17:04:19 +02:00
|
|
|
|
|
|
|
prepare() {
|
2023-06-02 21:52:11 +02:00
|
|
|
# prepare launcher script
|
|
|
|
sed -i "s|@PKGNAME@|${_pkgname}|g;s|@PKGVER@|${_pkgver}|g;s|@ELECTRON@|${_electron}|g;s|@KRISPB2@|${_krisp_b2sum}|g" discord-launcher.sh
|
2021-09-16 17:04:19 +02:00
|
|
|
|
2023-04-03 08:32:00 +02:00
|
|
|
# fix the .desktop file
|
|
|
|
sed -i "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" Discord/$_pkgname.desktop
|
2021-09-16 17:04:19 +02:00
|
|
|
|
2023-04-03 08:32:00 +02:00
|
|
|
# create the license files
|
|
|
|
curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md
|
|
|
|
curl https://discord.com/licenses | html2text >"${srcdir}"/OSS-LICENSES.md
|
2021-09-16 17:04:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2023-04-03 08:32:00 +02:00
|
|
|
# create necessary directories
|
|
|
|
install -d "${pkgdir}"/usr/{lib/$_pkgname,bin}
|
|
|
|
install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname}
|
2021-09-16 17:04:19 +02:00
|
|
|
|
2023-04-03 08:32:00 +02:00
|
|
|
cd "${srcdir}/Discord"
|
2021-09-16 17:04:19 +02:00
|
|
|
|
2023-04-03 08:32:00 +02:00
|
|
|
# use system electron
|
|
|
|
asar e resources/app.asar resources/app
|
|
|
|
rm resources/app.asar
|
|
|
|
sed -i "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" resources/app/app_bootstrap/buildInfo.js
|
|
|
|
sed -i "s|exeDir,|'/usr/share/pixmaps',|" resources/app/app_bootstrap/autoStart/linux.js
|
|
|
|
asar p resources/app resources/app.asar
|
|
|
|
rm -rf resources/app
|
2021-09-16 17:04:19 +02:00
|
|
|
|
2023-04-03 08:32:00 +02:00
|
|
|
# copy relevant data
|
|
|
|
cp -r resources/* "${pkgdir}"/usr/lib/$_pkgname/
|
|
|
|
cp $_pkgname.png \
|
|
|
|
"${pkgdir}"/usr/share/pixmaps/$_pkgname.png
|
|
|
|
cp $_pkgname.desktop \
|
|
|
|
"${pkgdir}"/usr/share/applications/$_pkgname.desktop
|
2021-09-16 17:04:19 +02:00
|
|
|
|
2023-04-03 08:32:00 +02:00
|
|
|
cd "${srcdir}"
|
|
|
|
|
|
|
|
# install the launch script
|
|
|
|
install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname
|
|
|
|
|
|
|
|
# install licenses
|
|
|
|
install -Dm 644 LICENSE.md "${pkgdir}"/usr/share/licenses/$_pkgname/
|
|
|
|
install -Dm 644 OSS-LICENSES.md "${pkgdir}"/usr/share/licenses/$_pkgname/
|
|
|
|
}
|