Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions extra/doxygen/APKBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Alpine Maintainer: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Narayana Murthy <nnarayanamurthy@qnx.com>
pkgname=doxygen
pkgver=1.16.1
pkgrel=0
pkgdesc="Documentation system for C++, C, Java, IDL and PHP"
url="https://www.doxygen.nl/"
arch="all"
license="GPL-2.0-or-later"
checkdepends="libxml2-utils"
makedepends="flex bison coreutils perl python3 cmake ninja qnx-fs-core-dev"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
makedepends="flex bison coreutils perl python3 cmake ninja qnx-fs-core-dev"
makedepends="flex bison coreutils perl python3 cmake ninja qnx-fs-core-dev libc++-dev libiconv-dev qnx-io-sock-dev qnx-fs-gpt-dev"

subpackages="$pkgname-doc"
source="https://doxygen.nl/files/doxygen-$pkgver.src.tar.gz"

build() {
cmake -B build -G Ninja \
-DGIT_EXECUTABLE=/bin/false \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=MinSizeRel
cmake --build build
}

check() {
rm -f ./testing/012_cite.dox
cd build
ctest
}

package() {
DESTDIR="$pkgdir" cmake --install build
}

sha512sums="
16c348e2943319e38fe2c0c3539c9b481c613a094f59c4fe16251bf7c62fa77cd979cff97507296721dd7f6cd9c1bd2bda13ab1740a13cef8fda31601878d09d doxygen-1.16.1.src.tar.gz
"