Both setAppBadge and autoStart at system boot now use dbus calls. This means that autoStart will work in Flatpak
17 lines
437 B
Bash
Executable File
17 lines
437 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
docker build -t libvesktop-builder -f Dockerfile .
|
|
|
|
docker run --rm -v "$PWD":/src -w /src libvesktop-builder bash -c "
|
|
set -e
|
|
|
|
echo '=== Building x64 ==='
|
|
npx node-gyp rebuild --arch=x64
|
|
mv build/Release/vesktop.node prebuilds/vesktop-x64.node
|
|
|
|
echo '=== Building arm64 ==='
|
|
export CXX=aarch64-linux-gnu-g++
|
|
npx node-gyp rebuild --arch=arm64
|
|
mv build/Release/vesktop.node prebuilds/vesktop-arm64.node
|
|
" |