summaryrefslogtreecommitdiff
blob: fb5109219a51de66161a3d354d113e6f4315e3bf (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
32
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake desktop

DESCRIPTION="Super Simple WM Independent Touchpad Gesture Daemon for libinput (forked version with new features)"
HOMEPAGE="https://github.com/osleg/gebaar-libinput-fork"
SRC_URI="https://github.com/osleg/gebaar-libinput-fork/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="dev-cpp/cpptoml
	dev-libs/cxxopts
	dev-libs/libinput"
DEPEND=${RDEPEND}

S="${WORKDIR}/gebaar-libinput-fork-${PV}"

src_prepare() {
	cmake_src_prepare
}

src_install() {
	dobin ${S}_build/gebaard
	dodoc README.md
	domenu assets/gebaar-libinput.desktop
}