blob: 6d550e39d41949c173566635c4dac22647366569 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
EAPI=8
inherit git-r3 savedconfig toolchain-funcs
DESCRIPTION="a efficient dynamic menu for Wayland, an effective port of dmenu to Wayland"
HOMEPAGE="https://codeberg.org/sewn/mew"
EGIT_REPO_URI="https://git.awy.one/mew"
LICENSE="MIT"
SLOT="0"
RDEPEND="
media-libs/fcft
dev-libs/wayland
dev-libs/wayland-protocols
x11-libs/libxkbcommon
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
}
|