summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormac <ra@afu.re>2025-08-15 08:47:46 -0400
committermac <ra@afu.re>2025-08-15 08:47:46 -0400
commit54f2198b3c279e02aafb97725c25fcace5a7728b (patch)
tree3cc4f66ba03c21376e7fc53f4f8d4e0070c269d5
parent5f34ab84c9fedf55d106ea507310beb791bccc72 (diff)
add gui-apps/wtype-0.4.ebuild
-rw-r--r--gui-apps/wtype/Manifest2
-rw-r--r--gui-apps/wtype/wtype-0.4.ebuild30
2 files changed, 32 insertions, 0 deletions
diff --git a/gui-apps/wtype/Manifest b/gui-apps/wtype/Manifest
new file mode 100644
index 0000000..880d9c4
--- /dev/null
+++ b/gui-apps/wtype/Manifest
@@ -0,0 +1,2 @@
+DIST wtype-0.4.tar.gz 8546 BLAKE2B 90973cf1373795004c7f5ec0f5d20b93896c2a9abab9037edc75b9d4af2a14d2acf8fa22df444ea8cbd6594af396522912dd87fa80dd96c04dbfb206ddec69d1 SHA512 d3441672418868221448675962979738016a9a5a96c61fd41a1e47d0633c8dea500a39c0834280788271abc6a59731692962b566ee9f6e592f00939088409130
+EBUILD wtype-0.4.ebuild 535 BLAKE2B 31a06b33bdb8878d2cddf4720b74062032fc60f639918eec7acb05bb94647c263f3e03540b57c40ac776c3085b369212e4d90a8e9e3ccc52d24035a5bdb95f0f SHA512 c8bb7e067f3f1029617c9bdf0f4a7e311e2bb9dc6029852027f4f80232b9172dc9efc2d994b52cef568f40bf3fc77b32390a6fd9cafa3967e59bb2012a78bf25
diff --git a/gui-apps/wtype/wtype-0.4.ebuild b/gui-apps/wtype/wtype-0.4.ebuild
new file mode 100644
index 0000000..cd51d0f
--- /dev/null
+++ b/gui-apps/wtype/wtype-0.4.ebuild
@@ -0,0 +1,30 @@
+# Copyright 2021 Aisha Tammy
+# Distributed under the terms of the ISC License
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="xdotool type for wayland"
+HOMEPAGE="https://github.com/atx/wtype"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/atx/wtype"
+else
+ SRC_URI="https://github.com/atx/wtype/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+DEPEND="
+ dev-libs/wayland:=
+ x11-libs/libxkbcommon
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+ dev-libs/wayland-protocols
+ virtual/pkgconfig
+"