Transition from gnustl to libc++
[termux-packages] / packages / hydra / build.sh
1 TERMUX_PKG_HOMEPAGE=https://github.com/vanhauser-thc/thc-hydra
2 TERMUX_PKG_DESCRIPTION="Network logon cracker supporting different services"
3 TERMUX_PKG_VERSION=8.5
4 TERMUX_PKG_SRCURL=https://github.com/vanhauser-thc/thc-hydra/archive/v${TERMUX_PKG_VERSION}.tar.gz
5 TERMUX_PKG_SHA256=69b69d16ce9499f3a941836b4d8a1c8a3ff9b905c921cc8c588a3af7f65a3b4b
6 TERMUX_PKG_FOLDERNAME=thc-hydra-$TERMUX_PKG_VERSION
7 TERMUX_PKG_BUILD_IN_SRC=yes
8 TERMUX_PKG_DEPENDS="openssl, pcre, libssh"
9
10 termux_step_configure() {
11 # Skip the ./configure file (which does not support cross compilation)
12 # and configure the build manually.
13 CFLAGS+=" -Dindex=strchr -DLIBOPENSSL -DNO_RINDEX -DHAVE_MATH_H -DHAVE_PCRE -DLIBSSH"
14 export MANDIR=/share/man/man1
15 export XLIBS="-lcrypto -lssl -lpcre -lssh"
16 cat Makefile.am | sed 's/^install:.*/install: all/' >> Makefile
17 }