Update package version to 1.19.0

This commit is contained in:
2025-10-16 12:34:38 +03:00
parent f8b6e60c80
commit d0e6e18b27
2 changed files with 13 additions and 14 deletions
+13 -4
View File
@@ -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
-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://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() {