Update package version to 20260107.0

This commit is contained in:
2026-01-10 11:47:16 +02:00
parent f85d1ab933
commit d8451c8d63
2 changed files with 13 additions and 13 deletions
+13 -3
View File
@@ -1,9 +1,19 @@
name: abseil-cpp
description: Abseil Common Libraries (C++)
version: 20250814.1
version: "20260107.0"
revision: 1
url: https://abseil.io/
license: Apache-2.0
architecture: any
depends: ["gcc-libs", "glibc", "googletest"]
make_depends: ["cmake"]
type: source
depends:
- gcc-libs
- glibc
- googletest
make_depends:
- cmake
downloads:
- url: https://github.com/abseil/abseil-cpp/archive/refs/tags/${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 4c124408da902be896a2f368042729655709db5e3004ec99f57e3e14439bc1b2
-10
View File
@@ -2,16 +2,6 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
DOWNLOAD="https://github.com/abseil/abseil-cpp/archive/refs/tags/${BPM_PKG_VERSION}.tar.gz"
FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory
# This function is used for downloading files and putting them into the correct location
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {