2023-04-03 08:35:46 +02:00
|
|
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
|
|
|
|
|
|
|
pkgname=discord-electron-openasar
|
|
|
|
_pkgname=discord
|
2024-07-15 22:00:11 +02:00
|
|
|
pkgver=0.0.60+828
|
2023-04-03 08:35:46 +02:00
|
|
|
_pkgver=${pkgver%%+*}
|
2024-07-15 22:00:11 +02:00
|
|
|
pkgrel=1
|
2024-06-30 20:53:38 +02:00
|
|
|
_electronver=31
|
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-06-30 20:53:38 +02:00
|
|
|
"git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c")
|
2024-07-15 22:00:11 +02:00
|
|
|
sha512sums=('eb83cf67e33e92a128808f225b9fa304fac708157a70a10c3539853d2e582e451c87e5c6ba6d1553a57db7b0dcd89823b7cf5eae2468d1d5dcd3b2f1fa396d4e'
|
2024-06-10 20:33:44 +02:00
|
|
|
'4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666'
|
2024-07-14 23:57:30 +02:00
|
|
|
'ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938'
|
2024-06-30 20:53:38 +02:00
|
|
|
'36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22')
|
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
|
|
|
|
install -Dm 644 krisp-patcher.py "${pkgdir}"/usr/lib/${_pkgname}/
|
|
|
|
|
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
|
|
|
}
|