Compare commits
2
Commits
9fa2757110
...
aeba4cd58e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aeba4cd58e
|
||
|
|
07ea5efc14
|
@@ -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
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user