No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    Building for Linux

    Help
    2
    2
    893
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • R
      Resistanc3 last edited by Resistanc3

      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.

      Output files image

      1 Reply Last reply Reply Quote 0
      • J
        JanKoIT last edited by JanKoIT

        late post, but may be useful

        for electron based app i used this:

        linux: {
            target: {
                target: 'appimage',
                arch: ['armv7l']
            }
        }
        
        1 Reply Last reply Reply Quote 0
        • First post
          Last post