airchief 0.0.0-202506220724
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/airchief +61 -0
- package/package.json +16 -0
- package/postinstall.mjs +90 -0
package/bin/airchief
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
set -e
|
3
|
+
|
4
|
+
if [ -n "$AIRCHIEF_BIN_PATH" ]; then
|
5
|
+
resolved="$AIRCHIEF_BIN_PATH"
|
6
|
+
else
|
7
|
+
# Get the real path of this script, resolving any symlinks
|
8
|
+
script_path="$0"
|
9
|
+
while [ -L "$script_path" ]; do
|
10
|
+
link_target="$(readlink "$script_path")"
|
11
|
+
case "$link_target" in
|
12
|
+
/*) script_path="$link_target" ;;
|
13
|
+
*) script_path="$(dirname "$script_path")/$link_target" ;;
|
14
|
+
esac
|
15
|
+
done
|
16
|
+
script_dir="$(dirname "$script_path")"
|
17
|
+
script_dir="$(cd "$script_dir" && pwd)"
|
18
|
+
|
19
|
+
# Map platform names
|
20
|
+
case "$(uname -s)" in
|
21
|
+
Darwin) platform="darwin" ;;
|
22
|
+
Linux) platform="linux" ;;
|
23
|
+
MINGW*|CYGWIN*|MSYS*) platform="win32" ;;
|
24
|
+
*) platform="$(uname -s | tr '[:upper:]' '[:lower:]')" ;;
|
25
|
+
esac
|
26
|
+
|
27
|
+
# Map architecture names
|
28
|
+
case "$(uname -m)" in
|
29
|
+
x86_64|amd64) arch="x64" ;;
|
30
|
+
aarch64) arch="arm64" ;;
|
31
|
+
armv7l) arch="arm" ;;
|
32
|
+
*) arch="$(uname -m)" ;;
|
33
|
+
esac
|
34
|
+
|
35
|
+
name="airchief-${platform}-${arch}"
|
36
|
+
binary="airchief"
|
37
|
+
[ "$platform" = "win32" ] && binary="airchief.exe"
|
38
|
+
|
39
|
+
# Search for the binary starting from real script location
|
40
|
+
resolved=""
|
41
|
+
current_dir="$script_dir"
|
42
|
+
while [ "$current_dir" != "/" ]; do
|
43
|
+
candidate="$current_dir/node_modules/$name/bin/$binary"
|
44
|
+
if [ -f "$candidate" ]; then
|
45
|
+
resolved="$candidate"
|
46
|
+
break
|
47
|
+
fi
|
48
|
+
current_dir="$(dirname "$current_dir")"
|
49
|
+
done
|
50
|
+
|
51
|
+
if [ -z "$resolved" ]; then
|
52
|
+
printf "It seems that your package manager failed to install the right version of the AirChief CLI for your platform. You can try manually installing the \"%s\" package\n" "$name" >&2
|
53
|
+
exit 1
|
54
|
+
fi
|
55
|
+
fi
|
56
|
+
|
57
|
+
# Handle SIGINT gracefully
|
58
|
+
trap '' INT
|
59
|
+
|
60
|
+
# Execute the binary with all arguments
|
61
|
+
exec "$resolved" "$@"
|
package/package.json
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
{
|
2
|
+
"name": "airchief",
|
3
|
+
"bin": {
|
4
|
+
"airchief": "./bin/airchief"
|
5
|
+
},
|
6
|
+
"scripts": {
|
7
|
+
"postinstall": "node ./postinstall.mjs"
|
8
|
+
},
|
9
|
+
"version": "0.0.0-202506220724",
|
10
|
+
"optionalDependencies": {
|
11
|
+
"airchief-linux-arm64": "0.0.0-202506220724",
|
12
|
+
"airchief-linux-x64": "0.0.0-202506220724",
|
13
|
+
"airchief-darwin-x64": "0.0.0-202506220724",
|
14
|
+
"airchief-darwin-arm64": "0.0.0-202506220724"
|
15
|
+
}
|
16
|
+
}
|
package/postinstall.mjs
ADDED
@@ -0,0 +1,90 @@
|
|
1
|
+
#!/usr/bin/env node
|
2
|
+
|
3
|
+
import fs from "fs"
|
4
|
+
import path from "path"
|
5
|
+
import os from "os"
|
6
|
+
import { fileURLToPath } from "url"
|
7
|
+
import { createRequire } from "module"
|
8
|
+
|
9
|
+
const __dirname = path.dirname(fileURLToPath(import.meta.url))
|
10
|
+
const require = createRequire(import.meta.url)
|
11
|
+
|
12
|
+
function detectPlatformAndArch() {
|
13
|
+
// Map platform names
|
14
|
+
let platform
|
15
|
+
switch (os.platform()) {
|
16
|
+
case "darwin":
|
17
|
+
platform = "darwin"
|
18
|
+
break
|
19
|
+
case "linux":
|
20
|
+
platform = "linux"
|
21
|
+
break
|
22
|
+
case "win32":
|
23
|
+
platform = "win32"
|
24
|
+
break
|
25
|
+
default:
|
26
|
+
platform = os.platform()
|
27
|
+
break
|
28
|
+
}
|
29
|
+
|
30
|
+
// Map architecture names
|
31
|
+
let arch
|
32
|
+
switch (os.arch()) {
|
33
|
+
case "x64":
|
34
|
+
arch = "x64"
|
35
|
+
break
|
36
|
+
case "arm64":
|
37
|
+
arch = "arm64"
|
38
|
+
break
|
39
|
+
case "arm":
|
40
|
+
arch = "arm"
|
41
|
+
break
|
42
|
+
default:
|
43
|
+
arch = os.arch()
|
44
|
+
break
|
45
|
+
}
|
46
|
+
|
47
|
+
return { platform, arch }
|
48
|
+
}
|
49
|
+
|
50
|
+
function findBinary() {
|
51
|
+
const { platform, arch } = detectPlatformAndArch()
|
52
|
+
const packageName = `airchief-${platform}-${arch}`
|
53
|
+
const binary = platform === "win32" ? "airchief.exe" : "airchief"
|
54
|
+
|
55
|
+
try {
|
56
|
+
// Use require.resolve to find the package
|
57
|
+
const packageJsonPath = require.resolve(`${packageName}/package.json`)
|
58
|
+
const packageDir = path.dirname(packageJsonPath)
|
59
|
+
const binaryPath = path.join(packageDir, "bin", binary)
|
60
|
+
|
61
|
+
if (!fs.existsSync(binaryPath)) {
|
62
|
+
throw new Error(`Binary not found at ${binaryPath}`)
|
63
|
+
}
|
64
|
+
|
65
|
+
return binaryPath
|
66
|
+
} catch (error) {
|
67
|
+
throw new Error(`Could not find package ${packageName}: ${error.message}`)
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
function main() {
|
72
|
+
try {
|
73
|
+
const binaryPath = findBinary()
|
74
|
+
const binScript = path.join(__dirname, "bin", "airchief")
|
75
|
+
|
76
|
+
// Remove existing bin script if it exists
|
77
|
+
if (fs.existsSync(binScript)) {
|
78
|
+
fs.unlinkSync(binScript)
|
79
|
+
}
|
80
|
+
|
81
|
+
// Create symlink to the actual binary
|
82
|
+
fs.symlinkSync(binaryPath, binScript)
|
83
|
+
console.log(`airchief binary symlinked: ${binScript} -> ${binaryPath}`)
|
84
|
+
} catch (error) {
|
85
|
+
console.error("Failed to create airchief binary symlink:", error.message)
|
86
|
+
process.exit(1)
|
87
|
+
}
|
88
|
+
}
|
89
|
+
|
90
|
+
main()
|