Update package version to 685

This commit is contained in:
2025-10-16 13:28:25 +03:00
parent 32344563dd
commit e527ddc54a
2 changed files with 11 additions and 12 deletions
+11 -2
View File
@@ -1,8 +1,17 @@
name: less
description: A free, open-source file pager
version: 679
version: "685"
revision: 1
url: https://www.greenwoodsoftware.com/less/
license: GPL3-or-later OR custom
architecture: any
depends: ["glibc","ncurses","pcre2"]
type: source
depends:
- glibc
- ncurses
- pcre2
downloads:
- url: https://www.greenwoodsoftware.com/less/less-${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 2701041e767e697ee420ce0825641cedc8f20b51576abe99d92c1666d332e9dc
-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 output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
DOWNLOAD="https://www.greenwoodsoftware.com/less/less-${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
# This function is used to compile the source code
build() {