2022-06-08 21:02:54 +02:00
|
|
|
# Maintainer: Zoddo <archlinux+aur@zoddo.fr>
|
2022-10-29 22:13:19 +02:00
|
|
|
# Contributor: Thaodan <AUR+me@thaodan.de>
|
2024-06-09 21:58:06 +02:00
|
|
|
# Contributor: Manuel Hüsers <aur@huesers.de>
|
2022-06-08 21:02:54 +02:00
|
|
|
# Contributor: huyizheng
|
|
|
|
# Contributor: johnnyapol <arch@johnnyapol.me>
|
2024-06-09 21:58:06 +02:00
|
|
|
|
2020-05-20 01:50:18 +02:00
|
|
|
# Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00) <lains@archlinux.org>
|
2024-06-09 21:58:06 +02:00
|
|
|
|
2020-05-20 01:50:18 +02:00
|
|
|
_pkgname=discord
|
2024-06-30 20:59:37 +02:00
|
|
|
_electron=electron
|
2022-10-29 22:13:19 +02:00
|
|
|
pkgname=${_pkgname}_arch_electron
|
2024-06-25 19:35:57 +02:00
|
|
|
pkgver=0.0.58
|
2024-06-30 20:59:37 +02:00
|
|
|
pkgrel=2
|
2024-06-09 21:58:06 +02:00
|
|
|
pkgdesc="Discord using system provided ${_electron} for increased security and performance"
|
2023-10-17 18:44:23 +02:00
|
|
|
arch=('any')
|
2022-12-10 12:14:58 +01:00
|
|
|
provides=("${_pkgname}")
|
|
|
|
conflicts=("${_pkgname}")
|
2022-06-08 21:02:54 +02:00
|
|
|
url='https://discord.com'
|
2020-05-20 01:50:18 +02:00
|
|
|
license=('custom')
|
2024-06-09 21:58:06 +02:00
|
|
|
options=('!strip')
|
|
|
|
install="$pkgname.install"
|
2024-06-10 20:30:20 +02:00
|
|
|
depends=("${_electron}" 'libxss')
|
2024-06-09 21:58:06 +02:00
|
|
|
makedepends=('asar' 'curl')
|
2020-05-20 01:50:18 +02:00
|
|
|
optdepends=('libpulse: Pulseaudio support'
|
2024-06-09 21:58:06 +02:00
|
|
|
'libappindicator-gtk3: Systray indicator support'
|
|
|
|
'xdg-utils: Open files'
|
|
|
|
'python-pyelftools: Required for Krisp patcher'
|
|
|
|
'python-capstone: Required for Krisp patcher')
|
|
|
|
source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz"
|
2022-09-15 19:43:31 +02:00
|
|
|
'discord-launcher.sh'
|
2024-06-09 21:58:06 +02:00
|
|
|
'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py
|
2024-06-25 19:35:57 +02:00
|
|
|
sha512sums=('8efab6f4a476c05b620f3e95c082ae3f5423a2aaab310687f8b67711b0b34e7c82105e8c9ea5d4e0b92fc368443bc6a0e8970143d28ef7cb2d5f9e05f85b038d'
|
2024-06-10 20:30:20 +02:00
|
|
|
'e11a60419c6ee5944aefc1ac16a5b496518fae626627d37a5bf636975bd21b1d9b6118ec3f44e7f4283befe5fa14737ad28dc38d975967789247ac0e66c352f3'
|
2024-06-09 21:58:06 +02:00
|
|
|
'3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f')
|
2020-05-20 01:50:18 +02:00
|
|
|
|
|
|
|
prepare() {
|
2024-06-09 21:58:06 +02:00
|
|
|
# prepare launcher script
|
|
|
|
sed -i -e "s|@PKGNAME@|${_pkgname}|" \
|
|
|
|
-e "s|@PKGVER@|${pkgver}|" \
|
|
|
|
-e "s|@ELECTRON@|${_electron}|" \
|
|
|
|
discord-launcher.sh
|
|
|
|
|
|
|
|
# fix the .desktop file
|
|
|
|
sed -i -e "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" ${_pkgname^}/$_pkgname.desktop
|
|
|
|
|
|
|
|
# create the license files
|
|
|
|
curl -o "${srcdir}/LICENSE.html" https://discord.com/terms
|
|
|
|
curl -o "${srcdir}/OSS-LICENSES.html" https://discord.com/licenses
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${_pkgname^}"
|
|
|
|
|
|
|
|
# use system electron
|
|
|
|
asar e resources/app.asar resources/app
|
|
|
|
rm resources/app.asar
|
|
|
|
sed -i -e "s|resourcesPath = _path.*;|resourcesPath = '/usr/share/${_pkgname}/resources';|" resources/app/common/paths.js
|
|
|
|
sed -i -e "s|process.resourcesPath|'/usr/share/${_pkgname}/resources'|" resources/app/app_bootstrap/buildInfo.js
|
|
|
|
sed -i -e "/^const appName/d" -e "/^const exePath/d" -e "/^const exeDir/d" -e "/^const iconPath/d" \
|
|
|
|
-e "s|^Exec=\${exePath}$|Exec=/usr/bin/${_pkgname}|" \
|
|
|
|
-e "s|^Name=\${appName}$|Name=${_pkgname^}|" \
|
|
|
|
-e "s|^Icon=\${iconPath}$|Icon=/usr/share/pixmaps/${_pkgname}.png|" \
|
|
|
|
resources/app/app_bootstrap/autoStart/linux.js
|
|
|
|
asar p resources/app resources/app.asar
|
|
|
|
rm -rf resources/app
|
2023-04-27 20:14:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2024-06-09 21:58:06 +02:00
|
|
|
# create necessary directories
|
|
|
|
install -d "${pkgdir}/usr/share/${_pkgname}"
|
|
|
|
|
|
|
|
# copy relevant data
|
|
|
|
cp -r ${_pkgname^}/resources "${pkgdir}/usr/share/${_pkgname}/"
|
2020-05-20 01:50:18 +02:00
|
|
|
|
2024-06-09 21:58:06 +02:00
|
|
|
# intall icon and desktop file
|
|
|
|
install -Dm 644 ${_pkgname^}/$_pkgname.png "${pkgdir}/usr/share/pixmaps/${_pkgname}.png"
|
|
|
|
install -Dm 644 ${_pkgname^}/$_pkgname.desktop "${pkgdir}/usr/share/applications/${_pkgname}.desktop"
|
2020-05-20 01:50:18 +02:00
|
|
|
|
2024-06-09 21:58:06 +02:00
|
|
|
# install the launch script
|
|
|
|
install -Dm 755 discord-launcher.sh "${pkgdir}/usr/bin/${_pkgname}"
|
2020-05-30 18:10:13 +02:00
|
|
|
|
2024-06-09 21:58:06 +02:00
|
|
|
# install krisp patcher
|
|
|
|
install -Dm 644 krisp-patcher.py "${pkgdir}/usr/share/${_pkgname}/"
|
2020-05-20 01:50:18 +02:00
|
|
|
|
2024-06-09 21:58:06 +02:00
|
|
|
# install licenses
|
|
|
|
install -Dm 644 LICENSE.html "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.html"
|
|
|
|
install -Dm 644 OSS-LICENSES.html "${pkgdir}/usr/share/licenses/${pkgname}/OSS-LICENSES.html"
|
2021-01-13 17:12:42 +01:00
|
|
|
}
|