mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-01-04 14:56:16 +01:00
34 lines
717 B
Bash
34 lines
717 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=5
|
|
|
|
DESCRIPTION="A modular framework that takes advantage of poor upgrade implementations by injecting fake updates."
|
|
HOMEPAGE="http://www.infobytesec.com/developments.html"
|
|
SRC_URI="https://github.com/infobyte/evilgrade/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
SLOT="0"
|
|
LICENSE="LGPL-2.1"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="dev-perl/Data-Dump
|
|
virtual/perl-Digest-MD5
|
|
virtual/perl-Time-HiRes"
|
|
|
|
src_prepare() {
|
|
rm trash
|
|
rm -r include/cpan/*.gz
|
|
}
|
|
|
|
src_install() {
|
|
dodoc docs/*
|
|
rm -r docs
|
|
|
|
insinto /usr/share/${PN}
|
|
doins -r *
|
|
|
|
dobin "${FILESDIR}"/evilgrade
|
|
}
|