Compare commits

..
5 Commits
Author SHA1 Message Date
EnumDev c45c512822 Update package version to 1.18.0 2026-09-04 15:56:40 +03:00
EnumDev 19188df4dd Switch to new package format 2026-06-13 19:59:07 +03:00
EnumDev 66a5b5701a Update package version to 1.17.0 2026-05-02 18:24:41 +03:00
EnumDev 3ca44f9364 Update .gitignore 2026-02-24 12:44:28 +02:00
EnumDev af3ea0f34b Update package version to 1.16.1 2026-01-17 11:11:53 +02:00
3 changed files with 11 additions and 7 deletions
+2 -1
View File
@@ -1,2 +1,3 @@
# Exclude bpm archives # Ignore BPM archives and signatures
*.bpm *.bpm
*.bpm.sig
+5 -3
View File
@@ -1,9 +1,11 @@
name: doxygen name: doxygen
description: Documentation generator tool description: Documentation generator tool
version: 1.16.0 version: 1.18.0
revision: 2 revision: 1
url: https://www.doxygen.nl/ url: https://www.doxygen.nl/
license: GPL2-or-later license: GPL2-or-later
maintainers:
- [email protected]
architecture: any architecture: any
type: source type: source
depends: depends:
@@ -27,4 +29,4 @@ downloads:
- url: https://github.com/doxygen/doxygen/archive/refs/tags/Release_${BPM_PKG_VERSION//./_}.tar.gz - url: https://github.com/doxygen/doxygen/archive/refs/tags/Release_${BPM_PKG_VERSION//./_}.tar.gz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: 329ece14a718852e22bf9e9cc5cf0b2df20b70a6853417e818e80a6ea78ea6ac checksum: b32a3def78b0b75a2fd74ee6a63fb4a79cb6273fe31a570362e4e1871fa446da
+3 -2
View File
@@ -1,4 +1,4 @@
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package # This is the recipe.sh script. It is executed by BPM in a temporary directory when compiling a source package
# 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
@@ -22,7 +22,8 @@ build() {
# The check function is executed in the source directory # The check function is executed in the source directory
# This function is used to run tests to verify the package has been compiled correctly # This function is used to run tests to verify the package has been compiled correctly
check() { check() {
ctest --test-dir build # Skip cite test as we are missing some required dependencies for it
ctest --test-dir build -E 012_cite
} }
# The package function is executed in the source directory # The package function is executed in the source directory