23 lines
790 B
Bash
23 lines
790 B
Bash
TERMUX_PKG_HOMEPAGE=http://www.doxygen.org
|
|
TERMUX_PKG_DESCRIPTION="A documentation system for C++, C, Java, IDL and PHP"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="lokesh @hax4us"
|
|
TERMUX_PKG_VERSION=1.8.17
|
|
TERMUX_PKG_SRCURL=https://github.com/doxygen/doxygen/archive/Release_${TERMUX_PKG_VERSION//./_}.tar.gz
|
|
TERMUX_PKG_SHA256=1b5d337e4b73ef1357a88cbd06fc4c301f08f279dac0adb99e876f4d72361f4f
|
|
TERMUX_PKG_DEPENDS="libc++, libiconv"
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
-DBISON_EXECUTABLE=$(which bison)
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
-DFLEX_EXECUTABLE=$(which flex)
|
|
-DPYTHON_EXECUTABLE=$(which python3)
|
|
-Dbuild_parse=yes
|
|
-Dbuild_xmlparser=yes
|
|
"
|
|
|
|
termux_step_post_make_install() {
|
|
mkdir -p $TERMUX_PREFIX/share/man/man1
|
|
cp $TERMUX_PKG_SRCDIR/doc/doxygen.1 $TERMUX_PREFIX/share/man/man1
|
|
}
|