From 15c265f8d1c15b731cce8fb99e7dbe65ab94b56f Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 1 Nov 2025 14:23:27 +0200 Subject: [PATCH] Update package version to 6.16 --- pkg.info | 7 ++++++- source.sh | 9 +-------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/pkg.info b/pkg.info index 33ad9a3..48d4e74 100644 --- a/pkg.info +++ b/pkg.info @@ -1,6 +1,6 @@ name: man-pages description: Linux manual pages -version: "6.15" +version: "6.16" revision: 1 url: https://www.kernel.org/doc/man-pages/ license: Linux-man-pages-1-para,Linux-man-pages-copyleft,Linux-man-pages-copyleft-var,Linux-man-pages-copyleft-2-para,BSD-2-Clause,BSD-3-Clause,BSD-4-Clause-UC,GPL1-or-later,GPL2-only,GPL2-or-later,MIT @@ -11,3 +11,8 @@ make_depends: - bash - coreutils - make +downloads: + - url: https://www.kernel.org/pub/linux/docs/man-pages/man-pages-${BPM_PKG_VERSION}.tar.xz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 8e247abd75cd80809cfe08696c81b8c70690583b045749484b242fb43631d7a3 diff --git a/source.sh b/source.sh index 24537cd..b658620 100644 --- a/source.sh +++ b/source.sh @@ -2,16 +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 output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT -DOWNLOAD="https://www.kernel.org/pub/linux/docs/man-pages/man-pages-${BPM_PKG_VERSION}.tar.xz" -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 +# This function is used for putting downloaded files to the correct location or applying patches prepare() { - echo "$DOWNLOAD" - wget "$DOWNLOAD" - tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" - # Libxcrypt manpages are instaleld through the 'libxcrypt' package rm "$BPM_SOURCE"/man3/crypt* }