postman 10.19.0 added
This commit is contained in:
parent
6139985a8d
commit
277f447f0b
|
@ -0,0 +1 @@
|
|||
DIST postman-10.19.0.tar.gz 132259294 SHA256 e67d1e9faa5890149474ad318c91ba9ebcaa42866592eafc679a5644264551cb SHA512 f40dfd630953c49a23695ce10215270a1bed43769789470bf47a6ce32ea4a616156badf2518bd1e026a30f62b2ec04d768b2b00753643fe64a638fb8173d9616 WHIRLPOOL 1a5c172cfcc56194ccd624c70dceffaad7e32f4e9ff82670469a29ab031db54a7e04d4e1a7bffb6abe5f7e7df28ea13170b36b28fb3811307f3c6eb873a4774c
|
|
@ -0,0 +1,25 @@
|
|||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
inherit desktop xdg
|
||||
|
||||
DESCRIPTION="API platform for building and using APIs"
|
||||
HOMEPAGE="https://www.postman.com/"
|
||||
SRC_URI="https://dl.pstmn.io/download/version/${PV}/linux64 -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="all-rights-reserved"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
QA_PREBUILT="*"
|
||||
|
||||
S="${WORKDIR}/Postman/app"
|
||||
|
||||
src_install() {
|
||||
mkdir -p "${ED}/opt/postman" || die "mkdir failed"
|
||||
cp -a * "${ED}/opt/postman" || die "cp failed"
|
||||
dosym "/opt/postman/postman" "/usr/bin/postman" || die "dosym failed"
|
||||
newicon "resources/app/assets/icon.png" "postman.png"
|
||||
make_desktop_entry "postman %U" "Postman" "postman" "Development;Utility;" "StartupWMClass=postman\nMimeType=x-scheme-handler/postman"
|
||||
}
|
Loading…
Reference in New Issue