Building for Linux
-
Hi guys, i’m trying to build my app for linux like this (my dev machine is running macos):
quasar build -m electron linux -t mat
With configuration like (quasar.conf.js):
packager: { platform: 'linux' }, builder: { linux: { target: 'tar.gz' }, deb: { target: 'tar.gz' } }
It’s outputting something, but is it the correct way for a raspbian build? I want to install this app on my raspberry pi.
-
late post, but may be useful
for electron based app i used this:
linux: { target: { target: 'appimage', arch: ['armv7l'] } }