Update package version to 0.18

This commit is contained in:
2025-09-17 09:22:06 +03:00
parent d824b83475
commit 42ad866bdd
3 changed files with 22 additions and 5 deletions
+15
View File
@@ -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"
+2 -1
View File
@@ -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
+5 -4
View File
@@ -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
}