Merge pull request #286 from ente-io/build-for-linux-arm64

configure electron builder to build for arm64 linux
This commit is contained in:
Abhinav Kumar 2023-12-15 15:58:22 +05:30 committed by GitHub
commit 8c03f663b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,23 +1,46 @@
{
"name": "ente",
"productName": "ente",
"version": "1.6.58",
"version": "1.6.59-beta.0",
"private": true,
"description": "Desktop client for ente.io",
"main": "app/main.js",
"build": {
"appId": "io.ente.bhari-frame",
"artifactName": "${productName}-${version}.${ext}",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"nsis": {
"deleteAppDataOnUninstall": true
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm",
"pacman",
"tar.gz"
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
},
{
"target": "deb",
"arch": [
"x64",
"arm64"
]
},
{
"target": "rpm",
"arch": [
"x64",
"arm64"
]
},
{
"target": "pacman",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "./build/icon.icns",
"category": "Photography"