-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·92 lines (77 loc) · 2.32 KB
/
install.sh
File metadata and controls
executable file
·92 lines (77 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/bin/sh
set -e
# LicScan — Install Script
# Usage: curl -fsSL https://install.codelake.dev/licscan/install.sh | sh
#
# Copyright 2026 codelake Technologies LLC, an Akyros Labs brand
# https://github.com/codelake-dev/licscan
BASE_URL="${LICSCAN_BASE_URL:-https://install.codelake.dev}"
INSTALL_DIR="${LICSCAN_INSTALL_DIR:-/usr/local/bin}"
BINARY_NAME="licscan"
VERSION="${LICSCAN_VERSION:-latest}"
main() {
detect_platform
download_binary
install_binary
verify_installation
}
detect_platform() {
OS="$(uname -s | tr '[:upper:]' '[:lower:]')"
ARCH="$(uname -m)"
case "$OS" in
linux) OS="linux" ;;
darwin) OS="darwin" ;;
*)
echo "Error: unsupported operating system: $OS"
echo "LicScan supports Linux and macOS. For Windows, download manually from:"
echo " ${BASE_URL}/licscan/${VERSION}/licscan-windows-amd64.exe"
exit 1
;;
esac
case "$ARCH" in
x86_64|amd64) ARCH="amd64" ;;
arm64|aarch64) ARCH="arm64" ;;
*)
echo "Error: unsupported architecture: $ARCH"
exit 1
;;
esac
SUFFIX="${OS}-${ARCH}"
echo "Detected platform: ${SUFFIX}"
}
download_binary() {
URL="${BASE_URL}/licscan/${VERSION}/${BINARY_NAME}-${SUFFIX}"
TMPDIR="$(mktemp -d)"
TMPFILE="${TMPDIR}/${BINARY_NAME}"
echo "Downloading ${BINARY_NAME} ${VERSION} from ${URL}..."
if command -v curl >/dev/null 2>&1; then
curl -fsSL -o "$TMPFILE" "$URL"
elif command -v wget >/dev/null 2>&1; then
wget -qO "$TMPFILE" "$URL"
else
echo "Error: curl or wget is required"
exit 1
fi
chmod +x "$TMPFILE"
}
install_binary() {
if [ -w "$INSTALL_DIR" ]; then
mv "$TMPFILE" "${INSTALL_DIR}/${BINARY_NAME}"
else
echo "Installing to ${INSTALL_DIR} (requires sudo)..."
sudo mv "$TMPFILE" "${INSTALL_DIR}/${BINARY_NAME}"
fi
rm -rf "$TMPDIR"
}
verify_installation() {
if command -v "$BINARY_NAME" >/dev/null 2>&1; then
echo ""
echo "Successfully installed: $($BINARY_NAME --version)"
echo "Run 'licscan scan .' to scan the current directory."
else
echo ""
echo "Installed to ${INSTALL_DIR}/${BINARY_NAME}"
echo "Make sure ${INSTALL_DIR} is in your PATH."
fi
}
main