src_prepare-overlay/net-misc/postman-bin/postman-bin-7.35.0.ebuild
Marcin Woźniak fe309e30d5
net-misc/postman-bin: Added new package v.7.35.0
Signed-off-by: Marcin Woźniak <y0rune@aol.com>
2020-11-07 14:40:46 +01:00

32 lines
720 B
Bash

# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop pax-utils xdg
MY_PN="${PN/-bin/}"
DESCRIPTION="Supercharge your API workflow"
HOMEPAGE="https://www.postman.com"
SRC_URI="https://dl.pstmn.io/download/version/${PV}/linux64 -> ${P}-amd64.tar.gz"
LICENSE="MPL-2.0"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="mirror strip"
S="${WORKDIR}/${MY_PN^}/app"
src_install() {
mkdir -p "${ED%/}/opt/${MY_PN}"
cp -r . "${ED%/}/opt/${MY_PN}"
newicon -s 128 resources/app/assets/icon.png ${MY_PN}.png
dobin "${FILESDIR}/${MY_PN}"
make_desktop_entry "postman" \
"Postman" \
"postman" \
"Development;IDE;"
pax-mark m "${ED%/}/opt/${MY_PN}/${MY_PN^}"
}