blob: 1237acd1a7fc43bf80cedbdbdb58b02a6d0bfd5a (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="On-screen virtual keyboard for wlroots"
HOMEPAGE="https://git.sr.ht/~proycon/wvkbd/"
SRC_URI="https://git.sr.ht/~proycon/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-v${PV}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64"
DEPEND="
dev-libs/wayland
x11-libs/libxkbcommon
x11-libs/pango
"
RDEPEND="$DEPEND"
BDEPEND="
virtual/pkgconfig
app-text/scdoc
"
src_install() {
make DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
}
|