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