contrib/doxygen/Pkgfile

18 lines
514 B
Plaintext
Raw Normal View History

2007-12-12 12:57:13 +01:00
# Description: Source code documentation generator tool
2020-08-21 17:24:01 +02:00
# URL: https://www.doxygen.nl/
# Maintainer: Jan-Michael Franz, jmf at mesecons dot net
2020-08-21 17:24:01 +02:00
# Depends on: cmake python3
2007-12-12 12:57:13 +01:00
2020-08-21 17:24:01 +02:00
name=doxygen
2020-09-13 21:36:07 +02:00
version=1.8.20
release=1
2020-08-21 17:24:01 +02:00
source=(https://doxygen.nl/files/$name-$version.src.tar.gz)
2007-12-12 12:57:13 +01:00
build() {
2020-08-21 17:24:01 +02:00
cmake -S$name-$version -Bbuild -G"Unix Makefiles" \
-DCMAKE_INSTALL_PREFIX=/usr
cmake --build build
DESTDIR=$PKG cmake --install build
install -D -m 0755 $SRC/$name-$version/doc/$name.1 $PKG/usr/share/man/man1/$name.1
2007-12-12 12:57:13 +01:00
}