Update package version to 0.19

This commit is contained in:
2025-09-21 20:15:48 +03:00
parent 495da9e4fa
commit 1e6225c4bb
3 changed files with 24 additions and 6 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# Gitlab repository
REPO="xdg/xdg-user-dirs"
# 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 -2
View File
@@ -1,8 +1,8 @@
name: xdg-user-dirs name: xdg-user-dirs
description: Tool for managing 'well known' user directories description: Tool for managing 'well known' user directories
version: 0.18 version: 0.19
url: https://www.freedesktop.org/wiki/Software/xdg-user-dirs/ url: https://www.freedesktop.org/wiki/Software/xdg-user-dirs/
license: GPL2 license: GPL2
architecture: any architecture: any
depends: ["sh","docbook-xsl-nons"] depends: ["sh","docbook-xsl-nons","meson"]
type: source type: source
+7 -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 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="http://user-dirs.freedesktop.org/releases/xdg-user-dirs-${BPM_PKG_VERSION}.tar.gz" DOWNLOAD="https://gitlab.freedesktop.org/xdg/xdg-user-dirs/-/archive/v${BPM_PKG_VERSION}/xdg-user-dirs-v${BPM_PKG_VERSION}.tar.gz"
FILENAME="${DOWNLOAD##*/}" FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory # The prepare function is executed in the root of the temp directory
@@ -15,12 +15,15 @@ prepare() {
# 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() {
./configure --prefix=/usr --sysconfdir=/etc meson setup --prefix=/usr build
make meson compile -C build
} }
# The package function is executed in the source directory # The package function is executed in the source directory
# This function is used to move the compiled files into the output directory # This function is used to move the compiled files into the output directory
package() { package() {
make DESTDIR="$BPM_OUTPUT" install meson install -C build --destdir="$BPM_OUTPUT"
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/xdg-user-dirs/COPYING
} }