# Maintainer: Zoddo # Contributor: Thaodan # Contributor: huyizheng # Contributor: johnnyapol # Based off the discord community repo PKGBUILD by Filipe LaĆ­ns (FFY00) _pkgname=discord _electron=electron pkgname=${_pkgname}_arch_electron pkgver=0.0.31 pkgrel=2 pkgdesc="Discord (popular voice + video app) using the system provided electron for increased security and performance" arch=('x86_64') provides=("${_pkgname}") conflicts=("${_pkgname}") url='https://discord.com' license=('custom') options=(!strip) depends=("${_electron}" 'libxss') makedepends=('asar') optdepends=('libpulse: Pulseaudio support' 'xdg-utils: Open files') source=("https://dl.discordapp.net/apps/linux/$pkgver/$_pkgname-$pkgver.tar.gz" 'discord-launcher.sh' 'LICENSE.html::https://discord.com/terms' 'OSS-LICENSES.html::https://discord.com/licenses') sha512sums=('596f0e2271e61798594d97a85728eea2bfa851db7f1e8b7fa65e1631dfeb347fa8d6087556854c0e775b88678a03b8ece97d0c1293b156e7ea908f6570645248' 'dff276383dca7670d6c06fc9ba5cd34f15ee5011271b4e77704b838eeb09c842019f8ebf2cfc6f8214be20c6ea414b743d0591bbef8067a863c3eeb880a16701' SKIP SKIP) prepare() { sed -i "s|@PKGNAME@|${_pkgname}|;s|@ELECTRON@|${_electron}|" discord-launcher.sh sed -i "s|Exec=.*|Exec=/usr/bin/$_pkgname|" Discord/discord.desktop # HACKS FOR SYSTEM ELECTRON asar e Discord/resources/app.asar Discord/resources/app rm Discord/resources/app.asar sed -i "s|process.resourcesPath|'/usr/lib/${_pkgname}/resources'|" Discord/resources/app/app_bootstrap/buildInfo.js sed -i "s|exeDir,|'/usr/share/pixmaps',|" Discord/resources/app/app_bootstrap/autoStart/linux.js asar p Discord/resources/app Discord/resources/app.asar rm -rf Discord/resources/app } package() { # Install the app install -d "${pkgdir}/usr/lib/${_pkgname}/resources" # Copy Relevanat data cp -r Discord/resources/* "${pkgdir}/usr/lib/${_pkgname}/resources/" install -d "$pkgdir"/usr/{bin,share/{pixmaps,applications}} install -Dm 755 "${srcdir}/discord-launcher.sh" "${pkgdir}/usr/bin/${_pkgname}" cp Discord/discord.png "$pkgdir"/usr/share/pixmaps/$_pkgname.png cp Discord/discord.desktop "$pkgdir"/usr/share/applications/$_pkgname.desktop # 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 }