mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-19 21:31:10 +02:00
28 lines
587 B
Bash
28 lines
587 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
inherit ruby
|
|
|
|
DESCRIPTION="a custom word list generator"
|
|
HOMEPAGE="http://www.digininja.org/projects/cewl.php"
|
|
SRC_URI="http://www.digininja.org/files/${PN}_${PV}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="$RDEPEND
|
|
dev-ruby/httpconfig
|
|
dev-ruby/spider
|
|
dev-ruby/mime-types
|
|
dev-ruby/rubyzip
|
|
dev-ruby/mini_exiftool"
|
|
|
|
S="${WORKDIR}"/$PN
|
|
|
|
src_install() {
|
|
ruby_einstall "$@"
|
|
dobin "$FILESDIR"/$PN || die "install failed"
|
|
}
|