mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Julien Roy <julien@jroy.ca>
42 lines
943 B
Bash
42 lines
943 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
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 )"
|
|
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}"/.
|
|
}
|