blob: 80be24fd6c9896450003d662643488dff0185da5 (
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
28
29
|
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"
KEYWORDS="~amd64"
src_compile() {
emake
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
}
|