blob: de2f5d29dc47b438935f78a08b34a26ee7e032d0 (
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
30
31
32
33
34
35
|
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="A Wayland stacking window manager similar to fvwm and mwm"
HOMEPAGE="https://codeberg.org/thomasadam/cow"
SRC_URI="https://codeberg.org/thomasadam/cow/releases/download/${PV}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64"
IUSE="man"
RDEPEND="gui-wm/river"
DEPEND="
dev-libs/wayland
>=dev-libs/wayland-protocols-1.41
x11-libs/libxkbcommon
x11-libs/pango
dev-libs/libbsd
dev-libs/libevent
man? ( app-text/scdoc )
"
src_configure() {
# i'm not sure this is correct... it'll maybe break on different EPREFIXes?
local emesonargs=(
-Detcprefix=/
)
meson_src_configure
}
|