From b95a0d020803e98924615f680468ce1e2e49a7fd Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 10 Oct 2025 16:07:31 +0300 Subject: [PATCH] Update package version to 3.0.6 --- pkg.info | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++---- source.sh | 10 -------- 2 files changed, 64 insertions(+), 15 deletions(-) diff --git a/pkg.info b/pkg.info index 89c757c..668d1e2 100644 --- a/pkg.info +++ b/pkg.info @@ -1,11 +1,70 @@ name: gimp description: A Free and Open-Source Image Editor -version: 3.0.4 -revision: 2 +version: 3.0.6 +revision: 1 url: https://www.gimp.org/ license: GPL3-or-later architecture: any -depends: ["aalib", "appstream-glib", "babl", "bzip2", "cairo", "fontconfig", "freetype2", "gcc-libs", "gdk-pixbuf", "gegl", "glib", "glibc", "gtk3", "harfbuzz", "hicolor-icon-theme", "iso-codes", "json-glib", "lcms2", "gexiv2", "libgudev", "libjpeg-turbo", "libjxl", "libmng", "libmypaint", "libpng", "librsvg", "libtiff", "libunwind", "libwebp", "libwmf", "libx11", "libxcursor", "libxext", "libxfixes", "libxmu", "libxpm", "mypaint-brushes", "openjpeg", "pango", "poppler","poppler-data", "python-pygobject", "xz-utils", "zlib"] -optional_depends: ["alsa-lib", "cfitsio", "ghostscript"] -make_depends: ["alsa-lib", "cfitsio", "ghostscript", "gobject-introspection", "intltool", "meson", "vala"] type: source +depends: + - aalib + - appstream-glib + - babl + - bzip2 + - cairo + - fontconfig + - freetype2 + - gcc-libs + - gdk-pixbuf + - gegl + - glib + - glibc + - gtk3 + - harfbuzz + - hicolor-icon-theme + - iso-codes + - json-glib + - lcms2 + - gexiv2 + - libgudev + - libjpeg-turbo + - libjxl + - libmng + - libmypaint + - libpng + - librsvg + - libtiff + - libunwind + - libwebp + - libwmf + - libx11 + - libxcursor + - libxext + - libxfixes + - libxmu + - libxpm + - mypaint-brushes + - openjpeg + - pango + - poppler + - poppler-data + - python-pygobject + - xz-utils + - zlib +optional_depends: + - alsa-lib + - cfitsio + - ghostscript +make_depends: + - alsa-lib + - cfitsio + - ghostscript + - gobject-introspection + - intltool + - meson + - vala +downloads: + - url: https://download.gimp.org/gimp/v${BPM_PKG_VERSION%.*}/gimp-${BPM_PKG_VERSION}.tar.xz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 246c225383c72ef9f0dc7703b7d707084bbf177bd2900e94ce466a62862e296b diff --git a/source.sh b/source.sh index 384db65..43c3762 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.gimp.org/gimp/v${BPM_PKG_VERSION%.*}/gimp-${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() {