1
0
Fork 0
mirror of https://github.com/xHyroM/void-packages.git synced 2024-09-19 20:13:19 +02:00
void-packages/srcpkgs/vesktop/template
2024-03-29 08:12:19 +01:00

35 lines
973 B
Bash

# Template file for 'vesktop'
pkgname='vesktop'
version='1.5.1'
revision='1'
arch='x86_64'
short_desc='Vesktop gives you the performance of web Discord and the comfort of Discord Desktop'
homepage='https://vencord.dev'
license='GPL3'
depends="electron24"
hostmakedepends="electron24"
makedepends="pnpm git"
distfiles="https://github.com/Vencord/Vesktop/archive/refs/tags/v${version}.tar.gz"
checksum="28f2fdc9a5d017446ad59f119dad0e2e649692d46c6ce8330891e7f0c725a33f"
do_build() {
export SYSTEM_ELECTRON_VERSION=$(</usr/lib/electron24/version)
sed -i 's/"electron": "^\([0-9]\+\.\)\{2\}[0-9]\+"/"electron": "'"${SYSTEM_ELECTRON_VERSION}"'"/g' package.json
sed -i '/linux/s/^/ "electronDist": "\/usr\/lib\/electron24",\n/' "package.json"
pnpm install
pnpm package:dir
}
do_install() {
vmkdir "usr/lib/${pkgname}"
vcopy "dist/linux-unpacked/resources/app.asar" "usr/lib/${pkgname}"
vinstall "${FILESDIR}/${pkgname}" 755 "usr/bin"
vlicense "LICENSE"
}