From d8451c8d63dc4bf2db0e39c86196bdfb9a556e7e Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 10 Jan 2026 11:47:16 +0200 Subject: [PATCH] Update package version to 20260107.0 --- pkg.info | 16 +++++++++++++--- source.sh | 10 ---------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/pkg.info b/pkg.info index 5bb4258..7078834 100644 --- a/pkg.info +++ b/pkg.info @@ -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 diff --git a/source.sh b/source.sh index 7302542..5baed65 100644 --- a/source.sh +++ b/source.sh @@ -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() {