diff --git a/pkg.info b/pkg.info index 5a3da33..4729a0a 100644 --- a/pkg.info +++ b/pkg.info @@ -1,11 +1,30 @@ name: doxygen description: Documentation generator tool version: 1.14.0 -revision: 2 +revision: 3 url: https://www.doxygen.nl/ license: GPL2-or-later architecture: any -depends: ["clang","fmt","gcc-libs","glibc","spdlog","sqlite"] -optional_dependds: ["graphviz","qt6-base"] -make_depends: ["cmake","flex","ghostscript","graphviz","llvm","python3","qt6-base","spdlog","sqlite"] type: source +depends: + - clang + - fmt + - gcc-libs + - glibc + - spdlog + - sqlite +make_depends: + - cmake + - flex + - ghostscript + - graphviz + - llvm + - python3 + - qt6-base + - spdlog + - sqlite +downloads: + - url: https://github.com/doxygen/doxygen/archive/refs/tags/Release_${BPM_PKG_VERSION//./_}.tar.gz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 5663bf33e979381f470c2f4055c3b162e0abe41bdd6c5dccefd8d8775780bcc3 diff --git a/source.sh b/source.sh index 581d65e..229d76e 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://github.com/doxygen/doxygen/archive/refs/tags/Release_${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() {