# Maintainer: Knut Ahlers # Contributor: Manuel Hüsers # Contributor: Stick # Contributor: johnnyapol # Contributor: huyizheng # Contributor: Filipe Laíns (FFY00) # Contributor: Morgan # Based off the discord_arch_electron_wayland PKGBUILD from Stick # Based off the discord_arch_electron PKGBUILD from johnnyapol and huyizheng # Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00) pkgname=discord _pkgname=discord _electron=30 pkgver=0.0.68 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") conflicts=("${_pkgname}") url='https://discord.com' license=('custom') options=('!strip') depends=("electron${_electron}" 'libnotify' 'libxss' 'nspr' 'nss' 'gtk3') makedepends=('asar') optdepends=( 'libpulse: Pulseaudio support' 'xdg-utils: Open files' ) source=( "https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz" 'discord-launcher.sh' 'LICENSE.html::https://discord.com/terms' 'OSS-LICENSES.html::https://discord.com/licenses' ) sha512sums=('38375d2c778a36ce5676b6409ac399ad1fcb4e79abd0b08918132fa2c3fcd287b51e95457d8d4c9745957bbbad614041f925fbf7141f2d6d517ef79c9e878f9a' '140b8fd340caf1069fcde0d23c8058488a59518b0b55db70290bd2c50b6c3c1c28978fe7d3a6e8feff65cec990f41e34cf68876acfc0183c51f6a58e9f8cb668' 'SKIP' 'SKIP') prepare() { # fix the .desktop file sed -i "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" Discord/$_pkgname.desktop echo 'Path=/usr/bin' >>Discord/$_pkgname.desktop # patch launcher electron version sed -i "s|@ELECTRON_VER@|${_electron}|" discord-launcher.sh cd "${srcdir}/Discord" # use system electron asar e resources/app.asar resources/app rm resources/app.asar sed -i "s|process.resourcesPath|'/usr/share/${_pkgname}/resources'|" resources/app/app_bootstrap/buildInfo.js sed -i "s|exeDir,|'/usr/share/pixmaps',|" resources/app/app_bootstrap/autoStart/linux.js sed -i -E "s|resourcesPath = _path.+;|resourcesPath = '/usr/share/${_pkgname}/resources';|" resources/app/common/paths.js asar p resources/app resources/app.asar rm -rf resources/app } package() { # install the launch script install -Dm 755 discord-launcher.sh "${pkgdir}/usr/bin/${_pkgname}" # copy resources into patched path install -d "${pkgdir}/usr/share/${_pkgname}/resources" cp -r Discord/resources/* "${pkgdir}/usr/share/${_pkgname}/resources/" install -Dm 644 Discord/$_pkgname.png "${pkgdir}/usr/share/pixmaps/${_pkgname}.png" install -Dm 644 Discord/$_pkgname.desktop "${pkgdir}/usr/share/applications/${_pkgname}.desktop" # install licenses install -Dm 644 -t "${pkgdir}/usr/share/licenses/${_pkgname}" LICENSE.html OSS-LICENSES.html }