2023-04-03 08:35:46 +02:00
|
|
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
|
|
|
|
|
|
|
pkgname=discord-electron-openasar
|
|
|
|
_pkgname=discord
|
2024-09-06 21:12:15 +02:00
|
|
|
pkgver=0.0.67+830
|
2023-04-03 08:35:46 +02:00
|
|
|
_pkgver=${pkgver%%+*}
|
2024-07-15 22:00:11 +02:00
|
|
|
pkgrel=1
|
2024-08-23 15:10:32 +02:00
|
|
|
_electronver=32
|
2023-11-09 16:57:54 +01:00
|
|
|
_electronname="electron${_electronver}"
|
|
|
|
pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance"
|
2023-04-03 08:35:46 +02:00
|
|
|
arch=('x86_64')
|
|
|
|
provides=("${_pkgname}")
|
|
|
|
conflicts=("${_pkgname}")
|
|
|
|
url='https://discord.com'
|
|
|
|
license=('custom')
|
|
|
|
options=('!strip')
|
2023-05-27 20:10:31 +02:00
|
|
|
install="$pkgname.install"
|
2024-06-10 20:33:44 +02:00
|
|
|
depends=("${_electronname}" 'libxss' 'unzip')
|
2024-06-30 20:53:38 +02:00
|
|
|
makedepends=('git' 'asar' 'nodejs' 'curl')
|
2023-04-03 08:35:46 +02:00
|
|
|
optdepends=(
|
|
|
|
'libpulse: Pulseaudio support'
|
2023-07-07 22:59:23 +02:00
|
|
|
'libappindicator-gtk3: Systray indicator support'
|
2023-04-03 08:35:46 +02:00
|
|
|
'xdg-utils: Open files'
|
2024-06-09 21:51:20 +02:00
|
|
|
'python-pyelftools: Required for Krisp patcher'
|
|
|
|
'python-capstone: Required for Krisp patcher'
|
2023-04-03 08:35:46 +02:00
|
|
|
)
|
2023-07-13 06:40:55 +02:00
|
|
|
source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz"
|
2023-05-27 20:10:31 +02:00
|
|
|
'discord-launcher.sh'
|
2024-06-09 21:51:20 +02:00
|
|
|
'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py
|
2024-09-06 21:12:15 +02:00
|
|
|
"git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c")
|
2024-09-04 19:27:57 +02:00
|
|
|
sha512sums=('59b29f2fcf841553547b94b0555d47a43d56ff4ae29bae1ae00a2ae5d78c01a995f27953daa3bf306f5e379af165889361a017a85ef2d09b6f9e38b1cfffcd6c'
|
2024-06-10 20:33:44 +02:00
|
|
|
'4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666'
|
2024-08-06 20:53:49 +02:00
|
|
|
'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff'
|
2024-09-06 21:12:15 +02:00
|
|
|
'4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573')
|
2023-04-03 08:35:46 +02:00
|
|
|
|
2023-04-06 06:55:37 +02:00
|
|
|
# just in case I get the version wrong
|
|
|
|
pkgver() {
|
|
|
|
cd "${srcdir}/openasar"
|
|
|
|
printf "%s+%s" "$_pkgver" "$(git rev-list --count HEAD)"
|
|
|
|
}
|
2023-04-03 08:35:46 +02:00
|
|
|
|
|
|
|
prepare() {
|
2023-06-02 21:52:38 +02:00
|
|
|
# prepare launcher script
|
2023-11-09 16:57:54 +01:00
|
|
|
sed -i -e "s|@PKGNAME@|${_pkgname}|g" \
|
|
|
|
-e "s|@PKGVER@|${_pkgver}|g" \
|
|
|
|
-e "s|@ELECTRON@|${_electronname}|g" \
|
|
|
|
discord-launcher.sh
|
2023-04-03 08:35:46 +02:00
|
|
|
|
|
|
|
# fix the .desktop file
|
2023-11-09 16:57:54 +01:00
|
|
|
sed -i -e "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" ${_pkgname^}/$_pkgname.desktop
|
2023-04-03 08:35:46 +02:00
|
|
|
|
|
|
|
# create the license files
|
2024-06-30 20:53:38 +02:00
|
|
|
curl -o LICENSE.html https://discord.com/terms
|
|
|
|
curl -o OSS-LICENSES.html https://discord.com/licenses
|
2023-04-03 08:35:46 +02:00
|
|
|
}
|
|
|
|
|
2023-07-13 06:40:55 +02:00
|
|
|
build() {
|
|
|
|
cd "${srcdir}"/openasar
|
2023-04-03 08:35:46 +02:00
|
|
|
|
|
|
|
# pack openasar
|
2023-11-09 16:57:54 +01:00
|
|
|
sed -i -e "s|nightly|nightly-$(git rev-parse HEAD | cut -c 1-7)|" src/index.js
|
2024-02-11 06:57:44 +01:00
|
|
|
sed -i -e "/config.setup = true/a\ config.autoupdate = false;" src/config/index.js
|
2024-04-09 12:08:16 +02:00
|
|
|
sed -i -e "s|process.resourcesPath|'/usr/lib/${_pkgname}/resources'|" src/utils/buildInfo.js
|
2023-11-09 16:57:54 +01:00
|
|
|
sed -i -e "s|^Exec=\${exec}$|Exec=/usr/bin/${_pkgname}|" \
|
|
|
|
-e "s|^Name=\${basename(exec)}$|Name=${_pkgname^}|" src/autoStart.js
|
2023-04-03 08:35:46 +02:00
|
|
|
node scripts/strip.js
|
|
|
|
asar p src app.asar
|
2023-07-13 06:40:55 +02:00
|
|
|
}
|
2023-04-03 08:35:46 +02:00
|
|
|
|
2023-07-13 06:40:55 +02:00
|
|
|
package() {
|
|
|
|
# create necessary directories
|
2024-06-09 21:51:20 +02:00
|
|
|
install -d "${pkgdir}"/usr/lib/$_pkgname
|
2023-04-03 08:35:46 +02:00
|
|
|
|
|
|
|
# copy relevant data
|
2024-04-09 12:08:16 +02:00
|
|
|
cp -r ${_pkgname^}/resources "${pkgdir}"/usr/lib/$_pkgname/
|
2024-06-09 21:51:20 +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
|
2023-04-03 08:35:46 +02:00
|
|
|
|
2023-07-13 06:40:55 +02:00
|
|
|
# overwrite Discord asar
|
2024-04-09 12:08:16 +02:00
|
|
|
install -Dm 644 openasar/app.asar "${pkgdir}"/usr/lib/$_pkgname/resources/
|
2023-04-03 08:35:46 +02:00
|
|
|
|
|
|
|
# install the launch script
|
|
|
|
install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname
|
|
|
|
|
2024-06-09 21:51:20 +02:00
|
|
|
# install krisp patcher
|
2024-08-23 15:10:32 +02:00
|
|
|
install -Dm 644 krisp-patcher.py "${pkgdir}"/usr/lib/$_pkgname/
|
2024-06-09 21:51:20 +02:00
|
|
|
|
2023-04-03 08:35:46 +02:00
|
|
|
# install licenses
|
2024-06-30 20:53:38 +02:00
|
|
|
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
|
2023-04-03 08:35:46 +02:00
|
|
|
}
|