Update package version to 0.9.2

This commit is contained in:
2026-01-02 12:55:44 +02:00
parent 5abaf58b08
commit 76a1c724be
2 changed files with 10 additions and 9 deletions
+9 -2
View File
@@ -1,8 +1,15 @@
name: libfyaml name: libfyaml
description: Fully feature complete YAML parser and emitter description: Fully feature complete YAML parser and emitter
version: 0.9 version: 0.9.2
revision: 1
url: https://github.com/pantoniou/libfyaml url: https://github.com/pantoniou/libfyaml
license: MIT license: MIT
architecture: any architecture: any
depends: ["glibc"]
type: source type: source
depends:
- glibc
downloads:
- url: https://github.com/pantoniou/libfyaml/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 979be4f6ba463c6d1a5b0d25c780486ae09c78477228e0af9368690e90a95698
+1 -7
View File
@@ -2,15 +2,9 @@
# 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://github.com/pantoniou/libfyaml/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz"
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
# This function is used for downloading files and putting them into the correct location # This function is used for putting downloaded files to the correct location or applying patches
prepare() { prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
cd "$BPM_SOURCE" cd "$BPM_SOURCE"
autoreconf -fi autoreconf -fi
} }