1
0
mirror of https://github.com/coalaura/ffwebp.git synced 2025-09-07 21:45:31 +00:00
Files
ffwebp/install.sh
2025-08-13 16:03:02 +02:00

52 lines
1.0 KiB
Bash

#!/bin/bash
set -e
OS=$(uname -s | tr 'A-Z' 'a-z')
ARCH=$(uname -m)
case "$ARCH" in
x86_64)
ARCH=amd64
;;
aarch64|arm64)
ARCH=arm64
;;
*)
echo "Unsupported architecture: $ARCH" >&2
exit 1
;;
esac
echo "Resolving latest version..."
VERSION=$(curl -sL https://api.github.com/repos/coalaura/ffwebp/releases/latest | grep -Po '"tag_name": *"\K.*?(?=")')
if ! printf '%s\n' "$VERSION" | grep -Eq '^v[0-9]+\.[0-9]+\.[0-9]+$'; then
echo "Error: '$VERSION' is not in vMAJOR.MINOR.PATCH format" >&2
exit 1
fi
rm -f /tmp/ffwebp
BIN="ffwebp_${VERSION}_full_${OS}_${ARCH}"
URL="https://github.com/coalaura/ffwebp/releases/download/${VERSION}/${BIN}"
echo "Downloading ${BIN}..."
if ! curl -sL "$URL" -o /tmp/ffwebp; then
echo "Error: failed to download $URL" >&2
exit 1
fi
trap 'rm -f /tmp/ffwebp' EXIT
chmod +x /tmp/ffwebp
echo "Installing to /usr/local/bin/ffwebp requires sudo"
if ! sudo install -m755 /tmp/ffwebp /usr/local/bin/ffwebp; then
echo "Error: install failed" >&2
exit 1
fi
echo "ffwebp $VERSION installed to /usr/local/bin/ffwebp"