88 lines
3.6 KiB
Bash
88 lines
3.6 KiB
Bash
# Maintainer: Zoddo <archlinux+aur@zoddo.fr>
|
|
# Contributor: Thaodan <AUR+me@thaodan.de>
|
|
# Contributor: Manuel Hüsers <aur@huesers.de>
|
|
# Contributor: huyizheng
|
|
# Contributor: johnnyapol <arch@johnnyapol.me>
|
|
|
|
# Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00) <lains@archlinux.org>
|
|
|
|
_pkgname=discord
|
|
_electron=electron
|
|
pkgname=${_pkgname}_arch_electron
|
|
pkgver=0.0.67
|
|
pkgrel=1
|
|
pkgdesc="Discord using system provided ${_electron} for increased security and performance"
|
|
arch=('any')
|
|
provides=("${_pkgname}")
|
|
conflicts=("${_pkgname}")
|
|
url='https://discord.com'
|
|
license=('custom')
|
|
options=('!strip')
|
|
install="$pkgname.install"
|
|
depends=("${_electron}" 'libxss')
|
|
makedepends=('asar' 'curl')
|
|
optdepends=('libpulse: Pulseaudio support'
|
|
'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"
|
|
'discord-launcher.sh'
|
|
'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py
|
|
sha512sums=('59b29f2fcf841553547b94b0555d47a43d56ff4ae29bae1ae00a2ae5d78c01a995f27953daa3bf306f5e379af165889361a017a85ef2d09b6f9e38b1cfffcd6c'
|
|
'e11a60419c6ee5944aefc1ac16a5b496518fae626627d37a5bf636975bd21b1d9b6118ec3f44e7f4283befe5fa14737ad28dc38d975967789247ac0e66c352f3'
|
|
'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff')
|
|
|
|
prepare() {
|
|
# 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
|
|
}
|
|
|
|
package() {
|
|
# create necessary directories
|
|
install -d "${pkgdir}/usr/share/${_pkgname}"
|
|
|
|
# copy relevant data
|
|
cp -r ${_pkgname^}/resources "${pkgdir}/usr/share/${_pkgname}/"
|
|
|
|
# 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"
|
|
|
|
# install the launch script
|
|
install -Dm 755 discord-launcher.sh "${pkgdir}/usr/bin/${_pkgname}"
|
|
|
|
# install krisp patcher
|
|
install -Dm 644 krisp-patcher.py "${pkgdir}/usr/share/${_pkgname}/"
|
|
|
|
# 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"
|
|
}
|