termux-packages/packages/doxygen/build.sh

23 lines
773 B
Bash
Raw Normal View History

2018-08-25 08:05:19 +02:00
TERMUX_PKG_HOMEPAGE=http://www.doxygen.org
TERMUX_PKG_DESCRIPTION="A documentation system for C++, C, Java, IDL and PHP"
2019-01-20 22:39:59 +01:00
TERMUX_PKG_LICENSE="GPL-2.0"
2019-12-31 13:53:56 +01:00
TERMUX_PKG_VERSION=1.8.17
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL=https://github.com/doxygen/doxygen/archive/Release_${TERMUX_PKG_VERSION//./_}.tar.gz
2019-12-31 13:53:56 +01:00
TERMUX_PKG_SHA256=1b5d337e4b73ef1357a88cbd06fc4c301f08f279dac0adb99e876f4d72361f4f
2019-06-19 20:25:46 +02:00
TERMUX_PKG_DEPENDS="libc++, libiconv"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
2019-02-12 09:41:30 +01:00
-DBISON_EXECUTABLE=$(which bison)
-DCMAKE_BUILD_TYPE=Release
2019-02-12 09:41:30 +01:00
-DFLEX_EXECUTABLE=$(which flex)
-DPYTHON_EXECUTABLE=$(which python3)
-Dbuild_parse=yes
-Dbuild_xmlparser=yes
"
termux_step_post_make_install() {
2018-08-25 08:05:19 +02:00
mkdir -p $TERMUX_PREFIX/share/man/man1
cp $TERMUX_PKG_SRCDIR/doc/doxygen.1 $TERMUX_PREFIX/share/man/man1
}