From e527ddc54a2e41b6fa94ddbb249c5fe79b6feedb Mon Sep 17 00:00:00 2001 From: EnumDev Date: Thu, 16 Oct 2025 13:28:25 +0300 Subject: [PATCH] Update package version to 685 --- pkg.info | 13 +++++++++++-- source.sh | 10 ---------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/pkg.info b/pkg.info index e509b2f..ade1831 100644 --- a/pkg.info +++ b/pkg.info @@ -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 diff --git a/source.sh b/source.sh index 790d8db..cc6602a 100644 --- a/source.sh +++ b/source.sh @@ -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() {