Cordova build for Ubuntu

I found that its possible to build Cordova application for Ubuntu.
https://cordova.apache.org/docs/en/latest/guide/platforms/ubuntu/index.html

Does anybody know how to apply this for “meteor-cordova” build?

So what about adding cordova build for desktop?

Right now it shouldn’t be possible, as Meteor includes native code for iOS and Android. However, you can do something else (we do this for our Chrome App).

You build a wrapper which simply loads your app from your website using webviews (if possible in Cordova for Ubuntu), using Service Workers to make it an offline app. If you are online, it only fetches the main URL to make sure everything is up to date. If so, then it’s a small pull, otherwise it fetches new files (e.g. new bundles JS and CSS).