mirror of
https://github.com/fiatjaf/nak.git
synced 2026-01-27 04:38:51 +00:00
74 lines
1.9 KiB
Bash
Executable File
74 lines
1.9 KiB
Bash
Executable File
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
# Detect OS
|
|
detect_os() {
|
|
case "$(uname -s)" in
|
|
Linux*) echo "linux";;
|
|
Darwin*) echo "darwin";;
|
|
FreeBSD*) echo "freebsd";;
|
|
MINGW*|MSYS*|CYGWIN*) echo "windows";;
|
|
*)
|
|
echo "Error: Unsupported OS $(uname -s)" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
}
|
|
|
|
# Detect architecture
|
|
detect_arch() {
|
|
case "$(uname -m)" in
|
|
x86_64|amd64) echo "amd64";;
|
|
aarch64|arm64) echo "arm64";;
|
|
riscv64) echo "riscv64";;
|
|
*)
|
|
echo "Error: Unsupported architecture $(uname -m)" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
}
|
|
|
|
# Set install directory
|
|
INSTALL_DIR="${INSTALL_DIR:-$HOME/.local/bin}"
|
|
|
|
# Detect platform
|
|
OS=$(detect_os)
|
|
ARCH=$(detect_arch)
|
|
|
|
echo "Installing nak ($OS-$ARCH) to $INSTALL_DIR..."
|
|
|
|
# Check if curl is available
|
|
command -v curl >/dev/null 2>&1 || { echo "Error: curl is required" >&2; exit 1; }
|
|
|
|
# Get latest release tag
|
|
RELEASE_INFO=$(curl -s https://api.github.com/repos/fiatjaf/nak/releases/latest)
|
|
TAG="${RELEASE_INFO#*\"tag_name\"}"
|
|
TAG="${TAG#*\"}"
|
|
TAG="${TAG%%\"*}"
|
|
|
|
[ -z "$TAG" ] && { echo "Error: Failed to fetch release info" >&2; exit 1; }
|
|
|
|
# Construct download URL
|
|
BINARY_NAME="nak-${TAG}-${OS}-${ARCH}"
|
|
[ "$OS" = "windows" ] && BINARY_NAME="${BINARY_NAME}.exe"
|
|
DOWNLOAD_URL="https://github.com/fiatjaf/nak/releases/download/${TAG}/${BINARY_NAME}"
|
|
|
|
# Create install directory and download
|
|
mkdir -p "$INSTALL_DIR"
|
|
TARGET_PATH="$INSTALL_DIR/nak"
|
|
[ "$OS" = "windows" ] && TARGET_PATH="${TARGET_PATH}.exe"
|
|
|
|
if curl -sS -L -f -o "$TARGET_PATH" "$DOWNLOAD_URL"; then
|
|
chmod +x "$TARGET_PATH"
|
|
echo "Installed nak $TAG to $TARGET_PATH"
|
|
|
|
# Check if install dir is in PATH
|
|
case ":$PATH:" in
|
|
*":$INSTALL_DIR:"*) ;;
|
|
*) echo "Note: Add $INSTALL_DIR to your PATH" ;;
|
|
esac
|
|
else
|
|
echo "Error: Download failed from $DOWNLOAD_URL" >&2
|
|
exit 1
|
|
fi
|