php: Update from 7.1.1 to 7.1.2 and enable pcntl
[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.4
4 TERMUX_PKG_REVISION=1
5 TERMUX_PKG_SRCURL=https://github.com/vanhauser-thc/thc-hydra/archive/v${TERMUX_PKG_VERSION}.tar.gz
6 TERMUX_PKG_SHA256=b478157618e602e0a8adc412efacc1c2a5d95a8f5bfb30579fbf5997469cd8b4
7 TERMUX_PKG_FOLDERNAME=thc-hydra-$TERMUX_PKG_VERSION
8 TERMUX_PKG_BUILD_IN_SRC=yes
9 TERMUX_PKG_DEPENDS="openssl, pcre, libssh"
10
11 termux_step_configure() {
12 # Skip the ./configure file (which does not support cross compilation)
13 # and configure the build manually.
14 CFLAGS+=" -Dindex=strchr -DLIBOPENSSL -DNO_RINDEX -DHAVE_MATH_H -DHAVE_PCRE -DLIBSSH"
15 export MANDIR=/share/man/man1
16 export XLIBS="-lcrypto -lssl -lpcre -lssh"
17 cat Makefile.am | sed 's/^install:.*/install: all/' >> Makefile
18 }