Ticket #56283: Portfile

File Portfile, 1.4 KB (added by gaming-hacker (G Alexander), 6 years ago)

Portfile for hashcat

Line 
1# -*- coding: utf-8; mode: _tcl; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- vim:fenc=utf-8:ft=tcl:et:sw=2:ts=2:sts=2
2
3PortSystem          1.0
4PortGroup           github 1.0
5PortGroup           compiler_blacklist_versions 1.0
6
7name                hashcat
8version             4.1.1
9github.setup        gaming-hacker hashcat bde4f7a09273c529784c8b5019c48a2977d42468
10fetch.type          git
11github.version      ${version}
12git.branch          master
13distname            ${name}-${github.version}
14
15categories          security develop
16license             BSD
17platforms           darwin
18maintainers         github:gaming-hacker
19description         World's fastest and most advanced password recovery utility.
20long_description    hashcat is the world's fastest and most advanced \
21password recovery utility, supporting five unique modes \
22of attack for over 200 highly-optimized hashing algorithms. \
23hashcat currently supports CPUs, GPUs, and other hardware \
24accelerators on Linux, Windows, and macOS, and has \
25facilities to help enable distributed password cracking
26homepage            https://hashcat.net/hashcat/
27
28compiler.blacklist-append gcc
29
30configure.compiler  macports-clang-6.0
31
32build.cmd           ${prefix}/bin/gmake
33build.target-delete -w all
34
35# build.type          gnu
36# build.type          xcode
37
38use_configure   no
39use_autoreconf  no
40use_automake    no
41
42depends_build       port:gmake
43