Centralize package info and do version checking between app/ext

This commit is contained in:
hensm
2018-12-11 19:42:01 +00:00
parent d615caf30d
commit 88a5c68a1b
17 changed files with 222 additions and 76 deletions

View File

@@ -3,10 +3,14 @@ const os = require("os");
const path = require("path");
const minimist = require("minimist");
const glob = require("glob");
const mustache = require("mustache");
const { spawnSync } = require("child_process");
const { exec: pkgExec } = require("pkg");
const { __applicationName: applicationName
, __applicationVersion: applicationVersion } = require("../package.json");
const { executableName
, executablePath
, manifestName
@@ -126,10 +130,11 @@ function package (platform) {
}
function packageDarwin () {
const installerName = "fx_cast_bridge.pkg";
const componentName = "fx_cast_bridge_component.pkg";
const installerName = `${applicationName}.pkg`;
const componentName = `${applicationName}_component.pkg`;
const packagingDir = path.join(__dirname, "../packaging/mac/");
const packagingOutputDir = path.join(BUILD_PATH, "packaging");
// Create pkgbuild root
const rootPath = path.join(BUILD_PATH, "root");
@@ -146,17 +151,41 @@ function packageDarwin () {
fs.moveSync(path.join(BUILD_PATH, manifestName)
, path.join(rootManifestPath, manifestName));
// Copy static files to be processed
fs.copySync(packagingDir, packagingOutputDir);
const view = {
applicationName
, manifestName
, componentName
, packageId: `tf.matt.${applicationName}`
};
// Template paths
const templatePaths = [
path.join(packagingOutputDir, "scripts/postinstall")
, path.join(packagingOutputDir, "distribution.xml")
];
// Do templating on static files
for (const templatePath of templatePaths) {
const templateContent = fs.readFileSync(templatePath).toString();
fs.writeFileSync(templatePath, mustache.render(templateContent, view));
}
// Build component package
spawnSync(
`pkgbuild --root ${rootPath} `
+ `--identifier "tf.matt.fx_cast_bridge" `
+ `--version "0.0.1" `
+ `--scripts ${path.join(packagingDir, "scripts")} `
+ `--identifier "tf.matt.${applicationName}" `
+ `--version "${applicationVersion}" `
+ `--scripts ${path.join(packagingOutputDir, "scripts")} `
+ `${path.join(BUILD_PATH, componentName)}`
, { shell: true });
// Distribution XML file
const distFilePath = path.join(packagingDir, "distribution.xml");
const distFilePath = path.join(packagingOutputDir, "distribution.xml");
// Build installer package
spawnSync(
@@ -170,7 +199,7 @@ function packageDarwin () {
}
function packageLinuxDeb () {
const installerName = "fx_cast_bridge.deb";
const installerName = `${applicationName}.deb`;
// Create root
const rootPath = path.join(BUILD_PATH, "root");
@@ -186,9 +215,26 @@ function packageLinuxDeb () {
fs.moveSync(path.join(BUILD_PATH, manifestName)
, path.join(rootManifestPath, manifestName));
const controlDir = path.join(__dirname, "../packaging/linux/deb/DEBIAN/");
const controlOutputDir = path.join(rootPath, path.basename(controlDir));
const controlFilePath = path.join(controlOutputDir, "control");
// Copy package info to root
fs.copySync(path.join(__dirname, "../packaging/linux/deb/DEBIAN/")
, path.join(rootPath, "DEBIAN"));
fs.copySync(controlDir, controlOutputDir);
const view = {
// Debian package names can't contain underscores
packageName: applicationName.replace(/_/g, "-")
, applicationName
, applicationVersion
};
// Do templating on control file
fs.writeFileSync(controlFilePath
, mustache.render(
fs.readFileSync(controlFilePath).toString()
, view));
// Build .deb package
spawnSync(
@@ -201,10 +247,27 @@ function packageLinuxDeb () {
function packageLinuxRpm () {
const specPath = path.join(__dirname
, "../packaging/linux/rpm/fx_cast_bridge.spec");
, "../packaging/linux/rpm/package.spec");
const specOutputPath = path.join(BUILD_PATH, path.basename(specPath));
const view = {
packageName: applicationName
, applicationName
, applicationVersion
, executablePath: executablePath["linux"]
, manifestPath: manifestPath["linux"]
, executableName: executableName["linux"]
, manifestName
};
fs.writeFileSync(specOutputPath
, mustache.render(
fs.readFileSync(specPath).toString()
, view));
spawnSync(
`rpmbuild -bb ${specPath} `
`rpmbuild -bb ${specOutputPath} `
+ `--define "_distdir ${BUILD_PATH}" `
+ `--define "_rpmdir ${BUILD_PATH}" `
, { shell: true });

View File

@@ -5,7 +5,8 @@ const minimist = require("minimist");
const { manifestName
, manifestPath
, DIST_PATH } = require("./lib/paths");
, DIST_PATH
, WIN_REGISTRY_KEY } = require("./lib/paths");
const argv = minimist(process.argv.slice(2), {
@@ -17,7 +18,6 @@ const argv = minimist(process.argv.slice(2), {
const CURRENT_MANIFEST_PATH = path.join(DIST_PATH, manifestName);
const WIN_REGISTRY_KEY = "fx_cast_bridge";
if (!fs.existsSync(CURRENT_MANIFEST_PATH) && !argv.remove) {

View File

@@ -1,23 +1,30 @@
const path = require("path");
const { __applicationName
, __applicationDirectoryName
, __applicationExecutableName } = require("../../package.json");
exports.DIST_PATH = path.join(__dirname, "../../../dist/app");
exports.WIN_REGISTRY_KEY = __applicationName;
exports.executableName = {
win32: "bridge.exe"
, darwin: "bridge"
, linux: "bridge"
win32: `${__applicationExecutableName}.exe`
, darwin: __applicationExecutableName
, linux: __applicationExecutableName
};
exports.executablePath = {
win32: "C:\\Program Files\\fx_cast\\"
, darwin: "/Library/Application Support/fx_cast/"
, linux: "/opt/fx_cast/"
win32: `C:\\Program Files\\${__applicationDirectoryName}\\`
, darwin: `/Library/Application Support/${__applicationDirectoryName}/`
, linux: `/opt/${__applicationDirectoryName}/`
};
exports.manifestName = "fx_cast_bridge.json";
exports.manifestName = `${__applicationName}.json`;
exports.manifestPath = {
win32: "C:\\Program Files\\fx_cast\\"
win32: `C:\\Program Files\\${__applicationDirectoryName}\\`
, darwin: "/Library/Application Support/Mozilla/NativeMessagingHosts/"
, linux: "/usr/lib/mozilla/native-messaging-hosts/"
};