diff options
author | 1024x2 | 2024-05-06 15:17:26 +0100 |
---|---|---|
committer | 1024x2 | 2024-05-06 15:17:26 +0100 |
commit | 45b17ed7c245691c4fb565036e3055a6469e25ec (patch) | |
tree | f4084521481739c4f70fcaf50413546a0b5a0850 /dev-vcs/p4 |
Initial commit
Diffstat (limited to 'dev-vcs/p4')
-rw-r--r-- | dev-vcs/p4/Manifest | 1 | ||||
-rw-r--r-- | dev-vcs/p4/p4-2023.2.2578891.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-vcs/p4/Manifest b/dev-vcs/p4/Manifest new file mode 100644 index 0000000..b9e71ae --- /dev/null +++ b/dev-vcs/p4/Manifest @@ -0,0 +1 @@ +DIST p4-2023.2.2578891-amd64 10447528 BLAKE2B 159e991d6b8e7b320ee62d2b50a0050660bb471aa44feebcd96b3bd630e44608aa6b77611d2ec268627d796d3d2550c920e43874815bfec4c83cee7967fc07b5 SHA512 181d8469b0e4062ee3797767285524b6947044b76613eb4b1cd41ab56851cb4d4b8dee1381b373d40f41d3e42caf48761731b566edf198bee61fe53947f785ae diff --git a/dev-vcs/p4/p4-2023.2.2578891.ebuild b/dev-vcs/p4/p4-2023.2.2578891.ebuild new file mode 100644 index 0000000..57773de --- /dev/null +++ b/dev-vcs/p4/p4-2023.2.2578891.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +REL="$(ver_cut 1-2)" +SHORTREL="${REL:2}" + +DESCRIPTION="Command-line client for the Perforce VCS" +HOMEPAGE="https://www.perforce.com/" +SRC_URI=" + amd64? ( https://ftp.perforce.com/pub/perforce/r${SHORTREL}/bin.linux26x86_64/p4 -> ${P}-amd64 ) +" +S="${WORKDIR}" +LICENSE="Perforce" +SLOT="0" +KEYWORDS="-* ~amd64" +IUSE="" +RESTRICT="mirror strip bindist" + +src_unpack() { + cp "${DISTDIR}/${A}" p4 || die +} + +src_install() { + dobin p4 +} |