mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-10 10:23:25 +01:00
25 lines
524 B
Bash
25 lines
524 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="Netcat: The powershell version"
|
|
HOMEPAGE="https://github.com/besimorhino/powercat"
|
|
|
|
EGIT_REPO_URI="https://github.com/besimorhino/powercat"
|
|
if [[ ${PV} != *9999 ]]; then
|
|
EGIT_COMMIT="ff755efeb2abc3f02fa0640cd01b87c4a59d6bb5"
|
|
KEYWORDS="~amd64 ~arm ~x86"
|
|
fi
|
|
|
|
LICENSE="public-domain"
|
|
SLOT="0"
|
|
|
|
src_install() {
|
|
insinto "/usr/share/powercat"
|
|
doins -r "${PN}".ps1
|
|
|
|
dodoc README.md
|
|
}
|