Update package version to 0.19
This commit is contained in:
@@ -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"
|
||||
@@ -1,8 +1,8 @@
|
||||
name: xdg-user-dirs
|
||||
description: Tool for managing 'well known' user directories
|
||||
version: 0.18
|
||||
version: 0.19
|
||||
url: https://www.freedesktop.org/wiki/Software/xdg-user-dirs/
|
||||
license: GPL2
|
||||
architecture: any
|
||||
depends: ["sh","docbook-xsl-nons"]
|
||||
depends: ["sh","docbook-xsl-nons","meson"]
|
||||
type: source
|
||||
|
||||
@@ -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="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##*/}"
|
||||
|
||||
# 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
|
||||
# This function is used to compile the source code
|
||||
build() {
|
||||
./configure --prefix=/usr --sysconfdir=/etc
|
||||
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 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/xdg-user-dirs/COPYING
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user