mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-27 01:03:18 +02:00
26 lines
533 B
Bash
26 lines
533 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=3
|
|
|
|
DESCRIPTION="Crunch is a wordlist generator"
|
|
HOMEPAGE="http://sourceforge.net/projects/crunch-wordlist/"
|
|
SRC_URI="mirror://sourceforge/crunch-wordlist/crunch-wordlist/${PN}${PV}.tgz"
|
|
|
|
LICENSE="GPL"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/${PN}${PV}"
|
|
|
|
src_install(){
|
|
dobin crunch || die
|
|
doman crunch.1
|
|
insinto /usr/share/crunch
|
|
doins charset.lst || die
|
|
}
|