add gui-apps/wtype-0.4 ebuild

master
Alexander Miroshnichenko 2022-03-06 12:38:50 +03:00
parent 48acfc8dde
commit f9460d11f4
Signed by: alex
GPG Key ID: E93720C6C73A77F4
3 changed files with 45 additions and 0 deletions

3
gui-apps/wtype/Manifest Normal file
View File

@ -0,0 +1,3 @@
DIST wtype-0.4.tar.gz 8546 BLAKE2B 90973cf1373795004c7f5ec0f5d20b93896c2a9abab9037edc75b9d4af2a14d2acf8fa22df444ea8cbd6594af396522912dd87fa80dd96c04dbfb206ddec69d1 SHA512 d3441672418868221448675962979738016a9a5a96c61fd41a1e47d0633c8dea500a39c0834280788271abc6a59731692962b566ee9f6e592f00939088409130
EBUILD wtype-0.4.ebuild 548 BLAKE2B 01c31d067054d703fcc9df6661264c226c16371c33db2df8a58fea42e54735a5557b7fa2d9aab2addb5ff622ed5be08358de1d1d900356e1c95e8c5a1da1f47a SHA512 2076a7d73f88c9d816f34093135aedd6542407690079ad76be95a23cef5efe880796361f554270afeab93d2797c3716b82585c40b77fd68452fabdc2cf2bb003
MISC metadata.xml 336 BLAKE2B 185f0a2b77d43c370a1037fcd98e40bbab7329ceaaf1433c319aaaf8101d6879af49509225d933048faf080b6df3223d42340fb0e00bdf43279c62b0448330ab SHA512 e23c4f1034d8318a0746d4bb5df203b0e768597e909cb4336ef8205d700ba6206034f109c5cbb035af93fcfbc4eaacb2387d0182ff0ddbbea43e77004461a9e6

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>floss@bsd.ac</email>
<name>Aisha Tammy</name>
</maintainer>
<use>
<flag name="modules">Build plugins as dynamically loaded shared librarie</flag>
</use>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# 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"
IUSE="modules"
DEPEND="
dev-libs/wayland
x11-libs/libxkbcommon
"
RDEPEND="${DEPEND}"
BDEPEND="
dev-libs/wayland-protocols
virtual/pkgconfig
"