# 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.47 pkgrel=1 pkgdesc="Discord (popular voice + video app) using the system provided electron for increased security and performance" arch=('any') 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=('da08bd801210d7194f8c5de1b43948e018dfccffc7685adbc28d0710351fbf9161f77ccb1e8c0c34b13d1955f53f8dd58f15470415b05d2e22057fe7ae73c703' 'd398351b209cd89432d8e9cebe9122f152484236d8ca4dd91e5679d3853fe2f082625d35a9ac3f450f1f08250736bf3a23db9926311e8271730d884b57d12dbc' 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/share/${_pkgname}/resources'|" Discord/resources/app/app_bootstrap/buildInfo.js sed -i "s|exeDir,|'/usr/share/pixmaps',|" Discord/resources/app/app_bootstrap/autoStart/linux.js sed -i -E "s|resourcesPath = _path.+;|resourcesPath = '/usr/share/${_pkgname}/resources';|" Discord/resources/app/common/paths.js asar p Discord/resources/app Discord/resources/app.asar rm -rf Discord/resources/app } package() { # Install the app install -d "${pkgdir}/usr/share/${_pkgname}/resources" # Copy Relevanat data cp -r Discord/resources/* "${pkgdir}/usr/share/${_pkgname}/resources/" install -Dm 755 "${srcdir}/discord-launcher.sh" "${pkgdir}/usr/bin/${_pkgname}" install -Dm 644 Discord/discord.png "${pkgdir}/usr/share/pixmaps/${_pkgname}.png" install -Dm 644 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 }