hashcat: initial commit, v6.1.1

This commit is contained in:
Alexandr Savca 2020-11-22 16:03:49 +02:00
parent c5fac7f956
commit fc3f063263
3 changed files with 1345 additions and 0 deletions

1316
hashcat/.footprint Normal file

File diff suppressed because it is too large Load Diff

5
hashcat/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF35BQGYAtEsFu9MKJ8FSA28B52Aw1qylxRA0OGc034RMqtvTWUmE8E4/ucjL0P9kLxYomAv+iIX4soRLGjd1+6QI=
SHA256 (Pkgfile) = 814567e3110c180e6d72840da353435ef2f58fcdb9db3a10f1cfad53957793b7
SHA256 (.footprint) = 53577c2a344e468691e22fc45dc1e94d262598c8ea9ff789493592536fad0a17
SHA256 (hashcat-6.1.1.tar.gz) = 39c140bbb3c0bdb1564bfa9b9a1cff49115a42f4c9c19e9b066b617aea309f80

24
hashcat/Pkgfile Normal file
View File

@ -0,0 +1,24 @@
# Description: Password cracker for GPU
# URL: https://hashcat.net/
# Maintainer: Alexandr Savca, alexandrsavca89 at gmail dot com
name=hashcat
version=6.1.1
release=1
source=(https://github.com/$name/$name/archive/v$version/$name-$version.tar.gz)
build() {
cd $name-$version
export PREFIX="/usr"
PATH="/usr/lib/ccache/:/bin:/sbin:/usr/bin:/usr/sbin"
# remove hardcoded optimization flags
sed -i -e '/^CFLAGS/s/+= -O2/+= /' \
-e '/^CFLAGS/s/+= -pipe /+= /' src/Makefile
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}