FreeTube/_scripts/build.js

149 lines
2.9 KiB
JavaScript
Raw Normal View History

2020-02-16 19:30:00 +01:00
const os = require('os')
const builder = require('electron-builder')
const Platform = builder.Platform
2020-07-21 23:43:52 +02:00
const Arch = builder.Arch
2020-02-16 19:30:00 +01:00
const { name, productName } = require('../package.json')
2020-07-21 23:43:52 +02:00
const args = process.argv
2020-02-16 19:30:00 +01:00
let targets
const platform = os.platform()
const cpus = os.cpus()
2020-02-16 19:30:00 +01:00
if (platform === 'darwin') {
let arch = Arch.x64
// Macbook Air 2020 with M1 = 'Apple M1'
// Macbook Pro 2021 with M1 Pro = 'Apple M1 Pro'
if (cpus[0].model.startsWith('Apple')) {
arch = Arch.arm64
}
targets = Platform.MAC.createTarget(['dmg'], arch)
} else if (platform === 'win32') {
2020-02-16 19:30:00 +01:00
targets = Platform.WINDOWS.createTarget()
} else if (platform === 'linux') {
2020-07-21 23:43:52 +02:00
let arch = Arch.x64
2021-03-06 17:19:54 +01:00
if (args[2] === 'arm64') {
2020-07-21 23:43:52 +02:00
arch = Arch.arm64
}
if (args[2] === 'arm32') {
2021-03-06 17:19:54 +01:00
arch = Arch.armv7l
}
2020-10-05 16:46:09 +02:00
targets = Platform.LINUX.createTarget(['deb', 'zip', 'apk', 'rpm', 'AppImage', 'pacman'], arch)
2020-02-16 19:30:00 +01:00
}
const config = {
appId: `io.freetubeapp.${name}`,
2021-07-02 18:54:59 +02:00
copyright: 'Copyleft © 2020-2021 freetubeapp@protonmail.com',
2020-02-16 19:30:00 +01:00
// asar: false,
// compression: 'store',
productName,
2020-02-16 19:30:00 +01:00
directories: {
output: './build/',
},
protocols: [
{
name: "FreeTube",
schemes: [
"freetube"
]
}
],
files: [
'_icons/iconColor.*',
'icon.svg',
'./dist/**/*',
'!dist/web/*',
'!node_modules/**/*',
// renderer
'node_modules/{miniget,ytpl,ytsr}/**/*',
'!**/README.md',
'!**/*.js.map',
'!**/*.d.ts',
],
2020-02-16 19:30:00 +01:00
dmg: {
contents: [
{
path: '/Applications',
type: 'link',
x: 410,
y: 230,
},
{
type: 'file',
x: 130,
y: 230,
},
],
window: {
height: 380,
width: 540,
2020-10-10 03:05:03 +02:00
}
2020-02-16 19:30:00 +01:00
},
linux: {
2020-03-25 09:05:40 +01:00
category: 'Network',
icon: '_icons/icon.svg',
2020-10-05 16:46:09 +02:00
target: ['deb', 'zip', 'apk', 'rpm', 'AppImage', 'pacman'],
2020-02-16 19:30:00 +01:00
},
// See the following issues for more information
// https://github.com/jordansissel/fpm/issues/1503
// https://github.com/jgraph/drawio-desktop/issues/259
rpm: {
fpm: [`--rpm-rpmbuild-define=_build_id_links none`]
},
deb: {
depends: [
"libgtk-3-0",
"libnotify4",
"libnss3",
"libxss1",
"libxtst6",
"xdg-utils",
"libatspi2.0-0",
"libuuid1",
"libsecret-1-0"
]
},
2020-02-16 19:30:00 +01:00
mac: {
category: 'public.app-category.utilities',
2021-03-07 02:41:26 +01:00
icon: '_icons/iconMac.icns',
2020-02-16 19:30:00 +01:00
target: ['dmg', 'zip'],
type: 'distribution',
2020-10-10 03:09:23 +02:00
extendInfo: {
CFBundleURLTypes: [
'freetube'
],
CFBundleURLSchemes: [
'freetube'
]
}
2020-02-16 19:30:00 +01:00
},
win: {
icon: '_icons/icon.ico',
2020-05-27 23:18:04 +02:00
target: ['nsis', 'zip', 'portable', 'squirrel'],
2020-02-16 19:30:00 +01:00
},
nsis: {
allowToChangeInstallationDirectory: true,
oneClick: false,
},
}
builder
.build({
targets,
config,
publish: 'never'
2020-02-16 19:30:00 +01:00
})
.then(m => {
console.log(m)
})
.catch(e => {
console.error(e)
})