From 5d7ff12d004a9847279cd997f6edf1ce082e1047 Mon Sep 17 00:00:00 2001 From: Samantha Baldwin Date: Mon, 1 Apr 2019 06:44:22 -0400 Subject: [PATCH] New package: hashcut-utils-1.9 --- srcpkgs/hashcat-utils/template | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 srcpkgs/hashcat-utils/template diff --git a/srcpkgs/hashcat-utils/template b/srcpkgs/hashcat-utils/template new file mode 100644 index 00000000000..06197e6b27c --- /dev/null +++ b/srcpkgs/hashcat-utils/template @@ -0,0 +1,24 @@ +# Template file for 'hashcat-utils' +pkgname=hashcat-utils +version=1.9 +revision=1 +build_wrksrc=src +build_style=gnu-makefile +depends="perl" +short_desc="Small utilities that are useful in advanced password cracking" +maintainer="Samantha Baldwin " +license="MIT" +homepage="https://github.com/hashcat/hashcat-utils/" +changelog="https://raw.githubusercontent.com/hashcat/hashcat-utils/master/CHANGES" +distfiles="https://github.com/hashcat/hashcat-utils/archive/v${version}.tar.gz" +checksum=9ddda7f9dfeebfde95b2e980241730262a7f512ceb37941c38b590721d6b6921 + +do_install() { + for bin in ${wrksrc}/${build_wrksrc}/*.bin; do + vbin $bin $(basename $bin .bin) + done + for script in ${wrksrc}/${build_wrksrc}/*.pl; do + vbin $script $(basename $script .pl) + done + vlicense ${wrksrc}/LICENSE +}