summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZero_Chaos <zerochaos@gentoo.org>2018-09-18 16:26:12 -0400
committerZero_Chaos <zerochaos@gentoo.org>2018-09-18 16:26:34 -0400
commitf6225f11a1a5922e89834205d78d35828b8e4b78 (patch)
treee50cbda406557576d6bb7c6523525983e1893989 /app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild
parentmedia-libs/tiff-4.0.9-r4: arm64 stable (bug #645982) (diff)
downloadgentoo-f6225f11a1a5922e89834205d78d35828b8e4b78.tar.gz
gentoo-f6225f11a1a5922e89834205d78d35828b8e4b78.tar.bz2
gentoo-f6225f11a1a5922e89834205d78d35828b8e4b78.zip
app-crypt/hashcat-utils: initial ebuild
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Diffstat (limited to 'app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild')
-rw-r--r--app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild25
1 files changed, 25 insertions, 0 deletions
diff --git a/app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild b/app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild
new file mode 100644
index 000000000000..f6396ab52c84
--- /dev/null
+++ b/app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="a set of small utilities that are useful in advanced password cracking"
+HOMEPAGE="https://github.com/hashcat/hashcat-utils"
+SRC_URI="https://github.com/hashcat/hashcat-utils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+S="${WORKDIR}/${P}/src"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_install() {
+ for i in *.bin; do
+ newbin ${i} ${i/.bin}
+ done
+}