Update package version to 4.4.8

This commit is contained in:
2026-07-10 19:09:47 +03:00
parent 310f3f0d84
commit d0fdea58de
3 changed files with 29 additions and 12 deletions
+11 -3
View File
@@ -1,4 +1,12 @@
#!/bin/sh
#!/bin/bash
# Ignore this package
echo "ignore"
# Git repository
REPO="https://git.ffmpeg.org/ffmpeg.git"
# Get tag name using 'git ls-remote'
TAG_NAME=$(git ls-remote --exit-code --refs --tags --sort='v:refname' "$REPO" | cut -d'/' -f3 | grep -E "^n4.4\.[0-9]{1,}$" | sort -V | tail -n1)
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'n')
echo "$VERSION"