diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..3613b02 --- /dev/null +++ b/check-version.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# Gitlab repository +REPO="GNOME/glib" + +# Replace slash with URL encoded representation +REPO=$(echo "$REPO" | sed 's|/|%2F|g') + +# Get tag name using Gitlab Rest API +TAG_NAME=$(curl -s -L https://gitlab.gnome.org/api/v4/projects/"$REPO"/releases/permalink/latest | jq -r '.tag_name') + +# Trim 'v' character in TAG_NAME variable +VERSION=$(echo "$TAG_NAME" | tr -d 'v') + +echo "$VERSION" diff --git a/pkg.info b/pkg.info index 7643ed2..44fd09e 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,9 @@ name: glib description: Low-level core library -version: 2.82.5 +version: 2.86.0 url: https://gitlab.gnome.org/GNOME/glib license: LGPL2.1-or-later architecture: any depends: ["bash","glibc","libffi","pcre2","util-linux","zlib"] -make_depends: ["dbus","gettext","gobject-introspection","libelf","meson","python3","python-setuptools","shared-mime-info"] +make_depends: ["dbus","gettext","gobject-introspection","libelf","meson","python3","python-packaging","shared-mime-info"] type: source diff --git a/source.sh b/source.sh index 8d9cb25..548fdc5 100644 --- a/source.sh +++ b/source.sh @@ -15,26 +15,22 @@ prepare() { # The build function is executed in the source directory # This function is used to compile the source code build() { - mkdir build - cd build - - meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release .. - meson compile + meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release build + meson compile -C build } # The package function is executed in the source directory # This function is used to move the compiled files into the output directory package() { - cd build - - meson install --destdir="$BPM_OUTPUT" + meson install -C build --destdir="$BPM_OUTPUT" # Install documentation install -d "$BPM_OUTPUT"/usr/share/doc/glib/ - cp -r ../docs/reference/{gio,glib,gobject} -t "$BPM_OUTPUT"/usr/share/doc/glib/ + cp -r "$BPM_SOURCE"/docs/reference/{gio,glib,gobject} -t "$BPM_OUTPUT"/usr/share/doc/glib/ # Install BPM hooks install -Dm644 "$BPM_WORKDIR"/*.bpmhook -t "$BPM_OUTPUT"/var/lib/bpm/hooks/ + # Install package license install -Dm644 "$BPM_SOURCE"/LICENSES/LGPL-2.1-or-later.txt "$BPM_OUTPUT"/usr/share/licenses/glib/LGPL-2.1-or-later.txt }