mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-19 05:59:16 -04:00
* disable updater + feature gate * remove updater enabling from custom tauri cli * formatting
150 lines
4.6 KiB
JavaScript
150 lines
4.6 KiB
JavaScript
const fs = require('node:fs');
|
|
const path = require('node:path');
|
|
const semver = require('semver');
|
|
|
|
const { spawn } = require('./spawn.js');
|
|
const { platform, workspace, setupScript } = require('./const.js');
|
|
const { setupFFMpegDlls, setupPlatformEnv } = require('./env.js');
|
|
|
|
const toRemove = [];
|
|
const [_, __, ...args] = process.argv;
|
|
|
|
if (args.length === 0) args.push('build');
|
|
|
|
const tauriConf = JSON.parse(
|
|
fs.readFileSync(path.resolve(__dirname, '..', 'tauri.conf.json'), 'utf-8')
|
|
);
|
|
|
|
switch (args[0]) {
|
|
case 'dev': {
|
|
const env = setupPlatformEnv();
|
|
if (platform === 'win32') setupFFMpegDlls(env.FFMPEG_DIR, true);
|
|
break;
|
|
}
|
|
case 'build': {
|
|
if (args.findIndex((e) => e === '-c' || e === '--config') !== -1) {
|
|
throw new Error('Custom tauri build config is not supported.');
|
|
}
|
|
|
|
const targets = args
|
|
.filter((_, index, args) => {
|
|
if (index === 0) return false;
|
|
const previous = args[index - 1];
|
|
return previous === '-t' || previous === '--target';
|
|
})
|
|
.flatMap((target) => target.split(','));
|
|
|
|
const env = setupPlatformEnv();
|
|
|
|
const tauriPatch = {
|
|
tauri: { bundle: { macOS: {} } }
|
|
};
|
|
|
|
switch (platform) {
|
|
case 'darwin': {
|
|
// Workaround while https://github.com/tauri-apps/tauri/pull/3934 is not merged
|
|
const cliNode =
|
|
process.arch === 'arm64' ? 'cli.darwin-arm64.node' : 'cli.darwin-x64.node';
|
|
const tauriCliPatch = path.join(workspace, 'target/Frameworks/bin/', cliNode);
|
|
if (!fs.existsSync(tauriCliPatch)) {
|
|
throw new Error(
|
|
`Tauri cli patch not found at ${path.relative(
|
|
workspace,
|
|
tauriCliPatch
|
|
)}. Did you run the setup script: ${setupScript}?`
|
|
);
|
|
}
|
|
const tauriBin = path.join(
|
|
workspace,
|
|
'node_modules/@tauri-apps',
|
|
cliNode.replace(/\.[^.]+$/, '').replace(/\./g, '-'),
|
|
cliNode
|
|
);
|
|
if (!fs.existsSync(tauriBin)) {
|
|
throw new Error('tauri bin not found at ${tauriBin}. Did you run `pnpm i`?');
|
|
}
|
|
console.log(
|
|
`WORKAROUND tauri-apps/tauri#3933: Replace ${path.relative(
|
|
workspace,
|
|
tauriBin
|
|
)} -> ${path.relative(workspace, tauriCliPatch)}`
|
|
);
|
|
fs.copyFileSync(tauriCliPatch, tauriBin);
|
|
|
|
// ARM64 support was added in macOS 11, but we need at least 11.2 due to our ffmpeg build
|
|
let macOSMinimumVersion = tauriConf?.tauri?.bundle?.macOS?.minimumSystemVersion;
|
|
let macOSArm64MinimumVersion = '11.2';
|
|
if (
|
|
(targets.includes('aarch64-apple-darwin') ||
|
|
(targets.length === 0 && process.arch === 'arm64')) &&
|
|
(macOSMinimumVersion == null ||
|
|
semver.lt(
|
|
semver.coerce(macOSMinimumVersion),
|
|
semver.coerce(macOSArm64MinimumVersion)
|
|
))
|
|
) {
|
|
macOSMinimumVersion = macOSArm64MinimumVersion;
|
|
console.log(
|
|
`aarch64-apple-darwin target detected, setting minimum system version to ${macOSMinimumVersion}`
|
|
);
|
|
}
|
|
|
|
if (macOSMinimumVersion) {
|
|
process.env.MACOSX_DEPLOYMENT_TARGET = macOSMinimumVersion;
|
|
tauriPatch.tauri.bundle.macOS.minimumSystemVersion = macOSMinimumVersion;
|
|
}
|
|
|
|
// Point tauri to our ffmpeg framework
|
|
tauriPatch.tauri.bundle.macOS.frameworks = [
|
|
path.join(workspace, 'target/Frameworks/FFMpeg.framework')
|
|
];
|
|
|
|
// Configure DMG background
|
|
process.env.BACKGROUND_FILE = path.resolve(__dirname, '..', 'dmg-background.png');
|
|
process.env.BACKGROUND_FILE_NAME = path.basename(process.env.BACKGROUND_FILE);
|
|
process.env.BACKGROUND_CLAUSE = `set background picture of opts to file ".background:${process.env.BACKGROUND_FILE_NAME}"`;
|
|
|
|
if (!fs.existsSync(process.env.BACKGROUND_FILE))
|
|
console.warn(
|
|
`WARNING: DMG background file not found at ${process.env.BACKGROUND_FILE}`
|
|
);
|
|
|
|
break;
|
|
}
|
|
case 'win32':
|
|
// Point tauri to the ffmpeg DLLs
|
|
tauriPatch.tauri.bundle.resources = setupFFMpegDlls(env.FFMPEG_DIR);
|
|
toRemove.push(
|
|
...tauriPatch.tauri.bundle.resources.map((file) =>
|
|
path.join(workspace, 'apps/desktop/src-tauri', file)
|
|
)
|
|
);
|
|
break;
|
|
}
|
|
|
|
const tauriPatchConf = path.resolve(__dirname, '..', 'tauri.conf.patch.json');
|
|
fs.writeFileSync(tauriPatchConf, JSON.stringify(tauriPatch, null, 2));
|
|
|
|
toRemove.push(tauriPatchConf);
|
|
args.splice(1, 0, '-c', tauriPatchConf);
|
|
}
|
|
}
|
|
|
|
let code = 0;
|
|
spawn('pnpm', ['tauri', ...args])
|
|
.catch((exitCode) => {
|
|
code = exitCode;
|
|
console.error(`tauri ${args[0]} failed with exit code ${exitCode}`);
|
|
console.error(
|
|
`If you got an error related to FFMpeg or Protoc/Protobuf you may need to run ${setupScript}`
|
|
);
|
|
})
|
|
.finally(() => {
|
|
for (const file of toRemove)
|
|
try {
|
|
fs.unlinkSync(file);
|
|
} catch (e) {}
|
|
|
|
process.exit(code);
|
|
});
|