Update package version to 3.0.6

This commit is contained in:
2025-10-10 16:07:31 +03:00
parent 581d2d7d27
commit b95a0d0208
2 changed files with 64 additions and 15 deletions
+64 -5
View File
@@ -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
-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.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() {