contrib/hashcat-utils/Pkgfile
2020-11-22 17:05:58 +02:00

19 lines
470 B
Plaintext

# Description: Small utilities that are useful in advanced password cracking
# URL: https://hashcat.net/
# Maintainer: Alexandr Savca, alexandrsavca89 at gmail dot com
name=hashcat-utils
version=1.9
release=1
source=(https://github.com/hashcat/$name/archive/v$version/$name-$version.tar.gz)
build() {
cd $name-$version/src
# remove hardcoded optimization flags
sed -i -e '/CFLAGS +=/s/-pipe -O2//' Makefile
make
install -Dm755 *.bin -t $PKG/usr/bin/
}