From 42ad866bdde536e6f9e90d524305d9bc0a2c8819 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Wed, 17 Sep 2025 09:22:06 +0300 Subject: [PATCH] Update package version to 0.18 --- check-version.sh | 15 +++++++++++++++ pkg.info | 3 ++- source.sh | 9 +++++---- 3 files changed, 22 insertions(+), 5 deletions(-) create mode 100644 check-version.sh diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..9c4ecd5 --- /dev/null +++ b/check-version.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# Gitlab repository +REPO="xdg/default-icon-theme" + +# 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.freedesktop.org/api/v4/projects/"$REPO"/repository/tags | jq -r '.[0].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 09ae2a6..0065b20 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,8 @@ name: hicolor-icon-theme description: The Hicolor icon theme from Freedesktop.org -version: 0.17 +version: 0.18 url: https://gitlab.freedesktop.org/xdg/default-icon-theme license: GPL2-or-later architecture: any +make_depends: ["meson"] type: source diff --git a/source.sh b/source.sh index 76c1536..21b7424 100644 --- a/source.sh +++ b/source.sh @@ -2,7 +2,7 @@ # 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://icon-theme.freedesktop.org/releases/hicolor-icon-theme-${BPM_PKG_VERSION}.tar.xz" +DOWNLOAD="https://gitlab.freedesktop.org/xdg/default-icon-theme/-/archive/v${BPM_PKG_VERSION}/default-icon-theme-v${BPM_PKG_VERSION}.tar.gz" FILENAME="${DOWNLOAD##*/}" # The prepare function is executed in the root of the temp directory @@ -15,14 +15,15 @@ prepare() { # The build function is executed in the source directory # This function is used to compile the source code build() { - ./configure --prefix=/usr - make + meson setup --prefix=/usr 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() { - make DESTDIR="$BPM_OUTPUT" install + meson install -C build --destdir="$BPM_OUTPUT" + # Install package license install -Dm644 COPYING "$BPM_OUTPUT"/usr/share/licenses/hicolor-icon-theme/COPYING }