Compare commits

...
2 Commits
Author SHA1 Message Date
EnumDev aeba4cd58e Enable documentation 2025-10-23 18:50:48 +03:00
EnumDev 07ea5efc14 Switch to new download format 2025-10-23 18:44:36 +03:00
2 changed files with 9 additions and 12 deletions
+8 -1
View File
@@ -1,7 +1,7 @@
name: glib
description: Low-level core library
version: 2.86.1
revision: 1
revision: 2
url: https://gitlab.gnome.org/GNOME/glib
license: LGPL2.1-or-later
architecture: any
@@ -16,9 +16,16 @@ depends:
make_depends:
- dbus
- gettext
- gi-docgen
- gobject-introspection
- libelf
- meson
- python3
- python-docutils
- python-packaging
- shared-mime-info
downloads:
- url: https://download.gnome.org/sources/glib/${BPM_PKG_VERSION%.*}/glib-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 119d1708ca022556d6d2989ee90ad1b82bd9c0d1667e066944a6d0020e2d5e57
+1 -11
View File
@@ -2,20 +2,10 @@
# 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/glib/${BPM_PKG_VERSION%.*}/glib-${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() {
meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release build
meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release -Ddocumentation=true build
meson compile -C build
}