Update package version to 0.18
This commit is contained in:
@@ -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"
|
||||||
@@ -1,7 +1,8 @@
|
|||||||
name: hicolor-icon-theme
|
name: hicolor-icon-theme
|
||||||
description: The Hicolor icon theme from Freedesktop.org
|
description: The Hicolor icon theme from Freedesktop.org
|
||||||
version: 0.17
|
version: 0.18
|
||||||
url: https://gitlab.freedesktop.org/xdg/default-icon-theme
|
url: https://gitlab.freedesktop.org/xdg/default-icon-theme
|
||||||
license: GPL2-or-later
|
license: GPL2-or-later
|
||||||
architecture: any
|
architecture: any
|
||||||
|
make_depends: ["meson"]
|
||||||
type: source
|
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 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="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##*/}"
|
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,14 +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
|
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 COPYING "$BPM_OUTPUT"/usr/share/licenses/hicolor-icon-theme/COPYING
|
install -Dm644 COPYING "$BPM_OUTPUT"/usr/share/licenses/hicolor-icon-theme/COPYING
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user