1
0
mirror of https://github.com/coalaura/ffwebp.git synced 2025-09-08 22:09:55 +00:00

install script

This commit is contained in:
Laura
2025-08-13 16:03:02 +02:00
parent 96274acad5
commit 3c593e1fcf
2 changed files with 54 additions and 6 deletions

52
install.sh Normal file
View File

@@ -0,0 +1,52 @@
#!/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"