Rebuild with spdlog 1.16.0

This commit is contained in:
2025-10-16 16:39:47 +03:00
parent e999481304
commit 396ad71245
2 changed files with 23 additions and 14 deletions
+23 -4
View File
@@ -1,11 +1,30 @@
name: doxygen name: doxygen
description: Documentation generator tool description: Documentation generator tool
version: 1.14.0 version: 1.14.0
revision: 2 revision: 3
url: https://www.doxygen.nl/ url: https://www.doxygen.nl/
license: GPL2-or-later license: GPL2-or-later
architecture: any 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 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
-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 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 # 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 # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {