void-packages/srcpkgs/hashcat/template
2017-10-28 15:33:39 +02:00

29 lines
804 B
Bash

# Template file for 'hashcat'
pkgname=hashcat
version=4.0.0
revision=1
build_style=gnu-makefile
make_build_args="LFLAGS=$LDFLAGS PREFIX=/usr"
makedepends="gmp-devel opencl2-headers"
short_desc="Advanced CPU-based password recovery utility"
maintainer="Duncaen <duncaen@voidlinux.eu>"
license="MIT"
homepage="https://hashcat.net/hashcat/"
distfiles="https://github.com/hashcat/hashcat/archive/v${version}.tar.gz"
checksum=e14c169d6966830e7b7423e17e678f3333e074ec50dae50bdde40e8e0e8658be
CFLAGS="-W -Wall -std=c99 -Iinclude/ -Iinclude/lzma_sdk/ -IOpenCL/"
pre_build() {
sed -i \
-e 's|tag: \(.*\)$|\1|' \
-e 's|-ldl|-ldl $(LDFLAGS)|g' \
-e 's| -s$||g' \
-e '/-march=native/d' \
src/Makefile
}
post_install() {
rm -f ${DESTDIR}/usr/share/docs/hashcat/license.txt
vlicense docs/license.txt
}