-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.sh
87 lines (75 loc) · 2.38 KB
/
install.sh
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
#!/bin/bash
# This script automates the installation of the lamver tool.
# It checks for the specified version (or fetches the latest one),
# downloads the binary, and installs it on the system.
# Check for required tools: curl and tar.
# These tools are necessary for downloading and extracting the lamver binary.
if ! command -v curl &>/dev/null; then
echo "curl could not be found"
exit 1
fi
if ! command -v tar &>/dev/null; then
echo "tar could not be found"
exit 1
fi
# Determine the version of lamver to install.
# If no version is specified as a command line argument, fetch the latest version.
if [ -z "$1" ]; then
VERSION=$(curl -s https://api.github.com/repos/go-to-k/lamver/releases/latest | grep '"tag_name":' | sed -E 's/.*"v([^"]+)".*/\1/')
if [ -z "$VERSION" ]; then
echo "Failed to fetch the latest version"
exit 1
fi
else
VERSION=$1
fi
# Normalize the version string by removing any leading 'v'.
VERSION=${VERSION#v}
# Detect the architecture of the current system.
# This script supports x86_64, arm64, and i386 architectures.
ARCH=$(uname -m)
case $ARCH in
x86_64 | amd64) ARCH="x86_64" ;;
arm64 | aarch64) ARCH="arm64" ;;
i386 | i686) ARCH="i386" ;;
*)
echo "Unsupported architecture: $ARCH"
exit 1
;;
esac
# Detect the operating system (OS) of the current system.
# This script supports Linux, Darwin (macOS) and Windows operating systems.
OS=$(uname -s)
case $OS in
Linux) OS="Linux" ;;
Darwin) OS="Darwin" ;;
MINGW* | MSYS* | CYGWIN*) OS="Windows" ;;
*)
echo "Unsupported OS: $OS"
exit 1
;;
esac
# Construct the download URL for the lamver binary based on the version, OS, and architecture.
FILE_NAME="lamver_${VERSION}_${OS}_${ARCH}.tar.gz"
URL="https://github.com/go-to-k/lamver/releases/download/v${VERSION}/${FILE_NAME}"
# Download the lamver binary.
echo "Downloading lamver..."
if ! curl -L -o "$FILE_NAME" "$URL"; then
echo "Failed to download lamver"
exit 1
fi
# Install lamver.
# This involves extracting the binary and moving it to /usr/local/bin.
echo "Installing lamver..."
if ! tar -xzf "$FILE_NAME"; then
echo "Failed to extract lamver"
exit 1
fi
if ! sudo mv lamver /usr/local/bin/lamver; then
echo "Failed to install lamver"
exit 1
fi
# Clean up by removing the downloaded tar file.
rm "$FILE_NAME"
echo "lamver installation complete."
echo "Run 'lamver -h' to see how to use lamver."