gui-apps/nwg-launchers: add 0.7.1.1

Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
This commit is contained in:
Pascal Jäger 2023-10-18 11:47:58 +02:00
parent c57758d46a
commit cdb912798a
No known key found for this signature in database
GPG Key ID: 9DF5441454F67138
2 changed files with 49 additions and 0 deletions

View File

@ -1,2 +1,3 @@
DIST nwg-launchers-0.5.0.tar.gz 52715 BLAKE2B 0a9cec7a809688e05da86fa7ba0da140c1d5cf273ee3fddae66ce88dccaf21cc65dfccb7deaca1be1d50ce2ac5173f0bcc8d70b61544daa392ab1f451e533724 SHA512 c2c343cd99071332664565d1c2244d97a4fc19e710c84c78ac7dca100c49dfbf5b12d56029cc47f45af29720be358ee69e24bdcfad6d0a383a0520f9215bc817
DIST nwg-launchers-0.6.3.tar.gz 64054 BLAKE2B 1ab920a390da76f3acf2c0012f63a3f121e6601b3d827b07a387bde15d91897640620b18bae2d1035152a64adcc8d45b595c3fa48a059aea9dc203b3ecab10f7 SHA512 36bb9179a8231d8200dddffd18b3e38a047a87828c95fd2dd0fe2a525856ea17bbd9fe51f4549ca4d3a6db555b94d30a606c0a874021b69f1af34f57a9f6ac28
DIST nwg-launchers-0.7.1.1.tar.gz 69947 BLAKE2B d7c04045dbb2d52b13a77032415e63e9de2b9fb4fdef5f9ea0e20126b08493e0c4364084572f2cc667126196efd947ca494ca5f8ae717fd2334c6ea1929922c3 SHA512 c7048e815e447393493597a2c3699875b207a32d6f1d41e7816d787ef8605da581c3da5181be330542dcd7e63294289f14e275803e03779c3f96cbf8908cee80

View File

@ -0,0 +1,48 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
if [[ "${PV}" == 9999 ]]
then
inherit git-r3
EGIT_REPO_URI="https://github.com/nwg-piotr/nwg-launchers.git"
else
SRC_URI="https://github.com/nwg-piotr/nwg-launchers/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
inherit meson xdg
DESCRIPTION="GTK+ launchers for sway, i3 and some other WMs"
HOMEPAGE="https://github.com/nwg-piotr/nwg-launchers"
LICENSE="GPL-3 CC-BY-SA-3.0"
SLOT="0"
RDEPEND="
x11-libs/gtk+:3
dev-cpp/gtkmm:3.0
dev-cpp/nlohmann_json
layershell? ( gui-libs/gtk-layer-shell )
dev-cpp/atkmm
dev-cpp/cairomm
dev-cpp/glibmm:2
dev-libs/glib:2
dev-libs/libsigc++:2
"
DEPEND="${RDEPEND}"
RESTRICT="mirror"
IUSE="+bar +dmenu +grid layershell"
src_configure() {
meson_src_configure $(meson_use bar) $(meson_use dmenu) $(meson_use grid) $(meson_feature layershell layer-shell)
}
src_install() {
meson_src_install
insinto /usr/share/icons/nwg-launchers
doins -r "${FILESDIR}"/.
}