Files
guru/gui-apps/nwg-launchers/nwg-launchers-0.7.1.1.ebuild
Lucio Sauer cf265f289a gui-apps/*: fix variable order
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
Signed-off-by: Julien Roy <julien@jroy.ca>
2024-05-13 18:18:20 -04:00

48 lines
1.0 KiB
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson xdg
DESCRIPTION="GTK+ launchers for sway, i3 and some other WMs"
HOMEPAGE="https://github.com/nwg-piotr/nwg-launchers"
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
LICENSE="GPL-3 CC-BY-SA-3.0"
SLOT="0"
IUSE="+bar +dmenu +grid layershell"
RESTRICT="mirror"
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}"
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}"/.
}