diff options
Diffstat (limited to 'gui-apps')
-rw-r--r-- | gui-apps/wmenu/wmenu-9999.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gui-apps/wmenu/wmenu-9999.ebuild b/gui-apps/wmenu/wmenu-9999.ebuild new file mode 100644 index 000000000000..4c0ed59e653f --- /dev/null +++ b/gui-apps/wmenu/wmenu-9999.ebuild @@ -0,0 +1,35 @@ +# Copyright 2023-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="dynamic menu for wlroots compositors, maintains the look and feel of dmenu" +HOMEPAGE="https://sr.ht/~adnano/wmenu/" + +if [[ "${PV}" == *9999* ]]; then + EGIT_REPO_URI="https://git.sr.ht/~adnano/wmenu" + inherit git-r3 +else + SRC_URI="https://git.sr.ht/~adnano/wmenu/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" + +BDEPEND=" + app-text/scdoc + dev-util/wayland-scanner +" +RDEPEND=" + x11-libs/cairo + x11-libs/pango + dev-libs/wayland + x11-libs/libxkbcommon +" +DEPEND=" + ${RDEPEND} + dev-libs/wayland-protocols +" |