Update package version to 1.15.2

This commit is contained in:
2025-09-12 12:33:22 +03:00
parent ec39dffd02
commit 8103f5ed1c
3 changed files with 14 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Github repository
REPO="webmproject/libvpx"
# Get tag name using Github Rest API
TAG_NAME=$(curl -s -L -H "X-GitHub-Api-Version: 2022-11-28" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/"$REPO"/tags | jq -r '.[0].name')
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
echo "$VERSION"
+1 -2
View File
@@ -1,7 +1,6 @@
name: libvpx
description: VP8/VP9 Codec SDK
version: 1.14.0
revision: 2
version: 1.15.2
url: https://www.webmproject.org/
license: custom
architecture: any
+1 -1
View File
@@ -22,7 +22,7 @@ build() {
# The check function is executed in the source directory
# This function is used to run tests to verify the package has been compiled correctly
check() {
make test
LD_LIBRARY_PATH=. make test
}
# The package function is executed in the source directory