From ba1b460f03ae262e8f88958f82e41d04816068a4 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Thu, 2 Oct 2025 15:09:03 +0300 Subject: [PATCH] Update package version to 2.44.3 --- pkg.info | 27 +++++++++++++++++++++++---- source.sh | 10 ---------- 2 files changed, 23 insertions(+), 14 deletions(-) diff --git a/pkg.info b/pkg.info index 1b48a06..1af1bb0 100644 --- a/pkg.info +++ b/pkg.info @@ -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 diff --git a/source.sh b/source.sh index e91f24a..9e8ea4c 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://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() {