forked from ports/contrib
22 lines
513 B
Plaintext
22 lines
513 B
Plaintext
# Description: fast network logon cracker
|
|
# URL: https://github.com/vanhauser-thc/thc-hydra
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Depends on:
|
|
# Nice to have: mysql, libssh, libidn, libssh, gtk
|
|
|
|
name=thc-hydra
|
|
version=9.0
|
|
release=1
|
|
source=(https://github.com/vanhauser-thc/thc-hydra/archive/v$version/$name-v$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
sed -i 's/dummy_ssh/dummy_sshkey/' hydra-sshkey.c
|
|
|
|
./configure --prefix=$PKG/usr
|
|
|
|
make
|
|
MANDIR="/share/man" make install
|
|
}
|