Update package version to 2.44.3

This commit is contained in:
2025-10-02 15:09:03 +03:00
parent 7e0f7e1627
commit ba1b460f03
2 changed files with 23 additions and 14 deletions
+23 -4
View File
@@ -1,10 +1,29 @@
name: gdk-pixbuf
description: An image loading library
version: 2.44.2
version: 2.44.3
revision: 1
url: https://wiki.gnome.org/Projects/GdkPixbuf
license: LGPL2-or-later
architecture: any
depends: ["glib","glibc","libjpeg-turbo","libpng","libtiff","shared-mime-info"]
optional_depends: ["libavif","libjxl","librsvg","libxwmf","webp-pixbuf-loader"]
make_depends: ["gobject-introspection","meson"]
type: source
depends:
- glib
- glibc
- libjpeg-turbo
- libpng
- libtiff
- shared-mime-info
optional_depends:
- libavif
- libjxl
- librsvg
- libxwmf
- webp-pixbuf-loader
make_depends:
- gobject-introspection
- meson
downloads:
- url: https://download.gnome.org/sources/gdk-pixbuf/${BPM_PKG_VERSION%.*}/gdk-pixbuf-${BPM_PKG_VERSION}.tar.xz
extract_to_bpm_source: true
extract_strip_components: 1
checksum: 40a92dcc237ff94b63a80c159a3f6f22cd59f6fb4961f201c78799fa2c8ac0a6
-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://download.gnome.org/sources/gdk-pixbuf/${BPM_PKG_VERSION%.*}/gdk-pixbuf-${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() {