mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-10 15:21:03 +00:00
60 lines
1.9 KiB
JavaScript
60 lines
1.9 KiB
JavaScript
var path = require('path')
|
|
var os = require('os')
|
|
|
|
var download = require('electron-download')
|
|
var extract = require('extract-zip')
|
|
var mkdirp = require('mkdirp')
|
|
var rimraf = require('rimraf')
|
|
|
|
var mac = require('./mac.js')
|
|
var linux = require('./linux.js')
|
|
var win32 = require('./win32.js')
|
|
|
|
module.exports = function packager (opts, cb) {
|
|
var packager
|
|
var platform = opts.platform
|
|
var arch = opts.arch
|
|
var version = opts.version
|
|
|
|
if (!platform || !arch || !version) cb(new Error('Must specify platform, arch and version'))
|
|
|
|
switch (arch) {
|
|
case 'ia32': break
|
|
case 'x64': break
|
|
default: return cb(new Error('Unsupported arch. Must be either ia32 or x64'))
|
|
}
|
|
|
|
switch (platform) {
|
|
case 'darwin': packager = mac; break
|
|
case 'linux': packager = linux; break
|
|
case 'win32': packager = win32; break
|
|
default: return cb(new Error('Unsupported platform. Must be either darwin, linux, or win32'))
|
|
}
|
|
|
|
// Ignore this and related modules by default
|
|
var defaultIgnores = ['/node_modules/electron-prebuilt($|/)', '/node_modules/electron-packager($|/)', '/\.git($|/)']
|
|
if (opts.ignore && !Array.isArray(opts.ignore)) opts.ignore = [opts.ignore]
|
|
opts.ignore = (opts.ignore) ? opts.ignore.concat(defaultIgnores) : defaultIgnores
|
|
|
|
download({
|
|
platform: platform,
|
|
arch: arch,
|
|
version: version
|
|
}, function (err, zipPath) {
|
|
if (err) return cb(err)
|
|
console.error('Packaging app for platform', platform + ' ' + arch, 'using electron v' + version)
|
|
// extract zip into tmp so that packager can use it as a template
|
|
var tmpDir = path.join(os.tmpdir(), 'electron-packager-' + platform + '-template')
|
|
rimraf(tmpDir, function (err) {
|
|
if (err) {} // ignore err
|
|
mkdirp(tmpDir, function (err) {
|
|
if (err) return cb(err)
|
|
extract(zipPath, {dir: tmpDir}, function (err) {
|
|
if (err) return cb(err)
|
|
packager.createApp(opts, tmpDir, cb)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
}
|