From d0e6e18b2794c55bdc76dbf643e75dda37afb9c3 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Thu, 16 Oct 2025 12:34:38 +0300 Subject: [PATCH] Update package version to 1.19.0 --- pkg.info | 17 +++++++++++++---- source.sh | 10 ---------- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/pkg.info b/pkg.info index 5845920..1e57532 100644 --- a/pkg.info +++ b/pkg.info @@ -1,10 +1,19 @@ name: cairomm-1.16 description: C++ wrapper for the cairo graphics library -version: 1.18.0 -revision: 2 +version: 1.19.0 +revision: 1 url: https://www.cairographics.org/cairomm/ license: LGPL2-only architecture: any -depends: ["cairo","libsigcpp-3.0"] -make_depends: ["meson","mm-common"] type: source +depends: + - cairo + - libsigcpp-3.0 +make_depends: + - meson + - mm-common +downloads: + - url: https://www.cairographics.org/releases/cairomm-${BPM_PKG_VERSION}.tar.xz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 8b14f03a0e5178c7ff8f7b288cb342a61711c84c9fbed6e663442cfcc873ce5b diff --git a/source.sh b/source.sh index 79ab4f6..ebcbeee 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://www.cairographics.org/releases/cairomm-${BPM_PKG_VERSION}.tar.xz" -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() {