diff options
| author | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
|---|---|---|
| committer | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
| commit | c82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch) | |
| tree | 56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/hashcat/MAKEPKG | |
| download | ports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz | |
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/hashcat/MAKEPKG')
| -rw-r--r-- | opt/hashcat/MAKEPKG | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/opt/hashcat/MAKEPKG b/opt/hashcat/MAKEPKG new file mode 100644 index 0000000..62a0920 --- /dev/null +++ b/opt/hashcat/MAKEPKG @@ -0,0 +1,39 @@ +#!/bin/mkpkg +# description: World's fastest password recovery utility +# url: https://hashcat.net/hashcat/ +name=hashcat +version=7.1.2 +release=3 +depends=(rocm-hipamd rocm-rocminfo ocl-icd xxhash zlib) +makedeps=(make opencl-headers) +source=(https://github.com/hashcat/hashcat/archive/refs/tags/v$version.tar.gz) +renames=(hashcat-$version.tar.gz) +sha256sums=( + "9546a6326d747530b44fcc079babad40304a87f32d3c9080016d58b39cfc8b96" +) + +build() { + cd hashcat-$version + make \ + PREFIX=/usr \ + SHARED=1 \ + CC=clang \ + CXX=clang++ \ + USE_SYSTEM_OPENCL=1 + make \ + DESTDIR=$PKG \ + PREFIX=/usr \ + SHARED=1 \ + CC=clang \ + CXX=clang++ \ + USE_SYSTEM_OPENCL=1 \ + install +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh + |
