Compare commits
2
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aeba4cd58e
|
||
|
|
07ea5efc14
|
@@ -1,7 +1,7 @@
|
|||||||
name: glib
|
name: glib
|
||||||
description: Low-level core library
|
description: Low-level core library
|
||||||
version: 2.86.1
|
version: 2.86.1
|
||||||
revision: 1
|
revision: 2
|
||||||
url: https://gitlab.gnome.org/GNOME/glib
|
url: https://gitlab.gnome.org/GNOME/glib
|
||||||
license: LGPL2.1-or-later
|
license: LGPL2.1-or-later
|
||||||
architecture: any
|
architecture: any
|
||||||
@@ -16,9 +16,16 @@ depends:
|
|||||||
make_depends:
|
make_depends:
|
||||||
- dbus
|
- dbus
|
||||||
- gettext
|
- gettext
|
||||||
|
- gi-docgen
|
||||||
- gobject-introspection
|
- gobject-introspection
|
||||||
- libelf
|
- libelf
|
||||||
- meson
|
- meson
|
||||||
- python3
|
- python3
|
||||||
|
- python-docutils
|
||||||
- python-packaging
|
- python-packaging
|
||||||
- shared-mime-info
|
- 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
|
||||||
|
|||||||
@@ -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 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
|
# 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
|
# The build function is executed in the source directory
|
||||||
# This function is used to compile the source code
|
# This function is used to compile the source code
|
||||||
build() {
|
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
|
meson compile -C build
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user