Adding first wvkbd ebuild.

This commit is contained in:
sergiotarxz 2022-05-05 23:28:21 +02:00
parent 68ed50a72c
commit a0ec1e7a4d
2 changed files with 26 additions and 0 deletions

2
app-misc/wvkbd/Manifest Normal file
View File

@ -0,0 +1,2 @@
DIST wvkbd-0.7.tar.gz 1055772 BLAKE2B 57f4954f8202594432203969cd423fcf2a365481c3a61259a016c9de5af6f84aa620a71e8258d5ca3db1e615ebd27b51dad015c90fcc0ce5ae4110b33db3248c SHA512 06959b7de5f760d73e69429c04103a12698b75b6b8a4a49d3899ad27aa12575fea6a03492f338b2eb544ad5379bd1816ec977723c36cfe6827d06360a68fe8c7
EBUILD wvkbd-0.7.ebuild 468 BLAKE2B 4b6e58f1b5ffde6cb8e7b6cad11789263a03ae7b470e851f78e473024c7d91078abc49999f89e6f24220d94bafe3ab8b015d6392fe0e3622ed20990a45c3d447 SHA512 9182466aa563681b53212ca927000eda8a57e2c5b2b1ffe7ba86166bb2dc0287e86a17b6feae34cdb9d32b0ac3113265984d0bca4e9618ef8aa4b24ca48bb3d1

View File

@ -0,0 +1,24 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A virtual keyboard for sway."
HOMEPAGE="https://github.com/jjsullivan5196/wvkbd"
SRC_URI="https://github.com/jjsullivan5196/${PN}/archive/refs/tags/v${PV}.tar.gz -> $P.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
make
}
src_install() {
make PREFIX=/usr DESTDIR="${D}" install
}