Update package version to 20251016_3.1

This commit is contained in:
2025-10-23 19:40:37 +03:00
parent d151b81419
commit 23102a3ec3
2 changed files with 10 additions and 12 deletions
+10 -2
View File
@@ -1,8 +1,16 @@
name: libedit name: libedit
description: Command line editor library providing generic line editing, history, and tokenization functions description: Command line editor library providing generic line editing, history, and tokenization functions
version: 20250104_3.1 version: "20251016_3.1"
revision: 1
url: https://thrysoee.dk/editline/ url: https://thrysoee.dk/editline/
license: BSD-3-Clause license: BSD-3-Clause
architecture: any architecture: any
depends: ["glibc","ncurses"]
type: source type: source
depends:
- glibc
- ncurses
downloads:
- url: https://thrysoee.dk/editline/libedit-${BPM_PKG_VERSION/_/-}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 21362b00653bbfc1c71f71a7578da66b5b5203559d43134d2dd7719e313ce041
-10
View File
@@ -2,16 +2,6 @@
# 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://thrysoee.dk/editline/libedit-${BPM_PKG_VERSION/_/-}.tar.gz"
FILENAME="${DOWNLOAD##*/}"
# 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
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
}
# 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() {