hydra: Add as disabled package
[termux-packages] / packages / timewarrior / build.sh
CommitLineData
e9beb74e
FF
1# Problem: In src/libshared/src/FS.cpp the <glob.h> file is included
2# which is not provided by the Android platform. In Termux
3# we have it in $TERMUX_PREFIX/include, which sould be found
4# by DCMAKE_FIND_ROOT_PATH=$TERMUX_PREFIX? Works in
5# taskwarrior for the src/FS.cpp file there.
6TERMUX_PKG_HOMEPAGE=https://tasktools.org/projects/timewarrior.html
7TERMUX_PKG_DESCRIPTION="Command-line time tracker"
8TERMUX_PKG_VERSION=1.0.0
9TERMUX_PKG_SRCURL=http://taskwarrior.org/download/timew-${TERMUX_PKG_VERSION}.tar.gz
10TERMUX_PKG_DEPENDS="libandroid-glob"
11
eb81fe33
FF
12termux_step_pre_configure() {
13 LDFLAGS+=" -landroid-glob"
14}
e9beb74e 15