aboutsummaryrefslogtreecommitdiff
path: root/gui-wm/cow
diff options
context:
space:
mode:
Diffstat (limited to 'gui-wm/cow')
-rw-r--r--gui-wm/cow/Manifest1
-rw-r--r--gui-wm/cow/cow-0.1.ebuild35
2 files changed, 36 insertions, 0 deletions
diff --git a/gui-wm/cow/Manifest b/gui-wm/cow/Manifest
new file mode 100644
index 0000000..b4a22c3
--- /dev/null
+++ b/gui-wm/cow/Manifest
@@ -0,0 +1 @@
+DIST cow-0.1.tar.gz 1432126 BLAKE2B ddc03d83c2563104605bc949c98db217f878db31fe8d7c923b9cfc3b5d35c86fcf4db2017710a820e326cbd37a8640bdb1c530d6f8db40905a38a07baf48394c SHA512 aabd6e8f1f0e064b20c06ae4f5816926bb9b1a4827fe23d1fc84b6cbf497d78239e8c426e6106df5f73f5d00d1e5a6839a0cb26b3f2bd25439190a660b4629c7
diff --git a/gui-wm/cow/cow-0.1.ebuild b/gui-wm/cow/cow-0.1.ebuild
new file mode 100644
index 0000000..de2f5d2
--- /dev/null
+++ b/gui-wm/cow/cow-0.1.ebuild
@@ -0,0 +1,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
+}