mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-08 01:15:00 +01:00
25 lines
501 B
Bash
25 lines
501 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="Various webshells"
|
|
HOMEPAGE="https://github.com/BlackArch/webshells"
|
|
|
|
EGIT_REPO_URI="https://github.com/BlackArch/webshells"
|
|
if [[ ${PV} != *9999 ]]; then
|
|
EGIT_COMMIT="8ab02aab571cb82536bb87e1002ee88fa66f609f"
|
|
KEYWORDS="~amd64 ~arm ~x86"
|
|
fi
|
|
|
|
LICENSE="Unlicense" # ??
|
|
SLOT="0"
|
|
|
|
src_install() {
|
|
insinto "/usr/share/webshells"
|
|
doins -r .
|
|
|
|
dodoc README.md
|
|
}
|