2012-12-24 02:12:39 +01:00
|
|
|
# Description: fast network logon cracker
|
2019-03-27 23:45:06 +01:00
|
|
|
# URL: https://github.com/vanhauser-thc/thc-hydra
|
2012-12-24 02:12:39 +01:00
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
|
|
# Depends on:
|
|
|
|
# Nice to have: mysql, libssh, libidn, libssh, gtk
|
|
|
|
|
|
|
|
name=thc-hydra
|
2020-08-01 09:41:21 +00:00
|
|
|
version=9.1
|
2012-12-24 02:12:39 +01:00
|
|
|
release=1
|
2019-04-10 02:07:02 +02:00
|
|
|
source=(https://github.com/vanhauser-thc/thc-hydra/archive/v$version/$name-v$version.tar.gz)
|
2012-12-24 02:12:39 +01:00
|
|
|
|
|
|
|
build() {
|
2017-06-22 00:42:47 +02:00
|
|
|
cd $name-$version
|
2012-12-24 02:12:39 +01:00
|
|
|
|
|
|
|
sed -i 's/dummy_ssh/dummy_sshkey/' hydra-sshkey.c
|
2020-08-01 09:41:21 +00:00
|
|
|
sed -i 's!MANDIR = /man/man1/!/MANDIR = /share/man/man1!' Makefile*
|
2012-12-24 02:12:39 +01:00
|
|
|
|
2020-08-01 09:41:21 +00:00
|
|
|
./configure \
|
|
|
|
--prefix=$PKG/usr
|
2017-06-22 00:42:47 +02:00
|
|
|
|
2012-12-24 02:12:39 +01:00
|
|
|
make
|
2020-01-20 15:34:40 +00:00
|
|
|
MANDIR="/share/man" make install
|
2012-12-24 02:12:39 +01:00
|
|
|
}
|