From d9db09af40e23635c05f63023c9baba531108a5b Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 26 Sep 2025 16:13:42 +0300 Subject: [PATCH] Switch to new download format --- pkg.info | 4 ++++ source.sh | 10 ---------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/pkg.info b/pkg.info index ede2d4f..0449eed 100644 --- a/pkg.info +++ b/pkg.info @@ -7,4 +7,8 @@ license: MIT architecture: any depends: ["libxml2"] make_depends: ["libxml2","unzip"] +downloads: + - url: "https://www.docbook.org/xml/${BPM_PKG_VERSION}/docbook-xml-${BPM_PKG_VERSION}.zip" + extract_to_bpm_source: true + checksum: 4e4e037a2b83c98c6c94818390d4bdd3f6e10f6ec62dd79188594e26190dc7b4 type: source diff --git a/source.sh b/source.sh index c1a0e75..619588d 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.docbook.org/xml/${BPM_PKG_VERSION}/docbook-xml-${BPM_PKG_VERSION}.zip" -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" - unzip "$FILENAME" -d "$BPM_SOURCE" -} - # The package function is executed in the source directory # This function is used to move the compiled files into the output directory package() {