# Template file for 'Signal-Desktop'
pkgname=Signal-Desktop
version=6.42.0
revision=1
# Signal officially only supports x86_64 
# x86_64-musl could potentially work based on the Alpine port:
# https://git.alpinelinux.org/aports/tree/testing/signal-desktop
# ARM: https://github.com/signalapp/Signal-Desktop/issues/3410
archs="x86_64"
hostmakedepends="git git-lfs nodejs-lts python3 python3-distutils-extra tar"
depends="cairo gtk+3 libvips pango"
short_desc="Signal Private Messenger for Linux"
maintainer="anelki <akierig@fastmail.de>"
license="AGPL-3.0-only"
homepage="https://github.com/signalapp/Signal-Desktop"
distfiles="https://github.com/signalapp/Signal-Desktop/archive/v${version}.tar.gz"
checksum=f22254742e7cd04390074d7a027b1ce1491004be3f532baf15c4fd0b31ce62ee
nostrip_files="signal-desktop"

post_extract() {
	# git-lfs hook needs to be installed for one of the dependencies
	git lfs install

	vsed 's/"node": "/&>=/' -i package.json

	npm install -g yarn
	# Dependencies have to be installed before applying patch
	yarn install --ignore-engines --frozen-lockfile
}

do_build() {
	yarn generate
	yarn build-release
}

do_install() {
	vmkdir usr/lib/signal-desktop

	# Remove prebuilt binaries for foreign architectures (to not confuse strip)
	for prebin in darwin-x64 linux-arm64 win32-ia32 win32-x64; do
		rm -rf release/linux-unpacked/resources/app.asar.unpacked/node_modules/{ffi-napi,ref-napi}/prebuilds/$prebin
		rm -rf release/linux-unpacked/resources/app.asar.unpacked/node_modules/ffi-napi/node_modules/ref-napi/prebuilds/$prebin
	done

	vcopy release/linux-unpacked/* usr/lib/signal-desktop

	vmkdir usr/bin
	ln -s /usr/lib/signal-desktop/signal-desktop ${DESTDIR}/usr/bin/

	vmkdir usr/share/applications
	vinstall ${FILESDIR}/signal.desktop 644 usr/share/applications/

	vmkdir usr/share/icons/hicolor
	for size in 16 32 256; do
		vinstall images/icon_${size}.png 644 usr/share/icons/hicolor/${size}x${size}/apps/ signal.png
	done

	vlicense LICENSE
}
