mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-19 17:18:09 -07:00
24 lines
542 B
Bash
24 lines
542 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
MY_PN="input"
|
|
MY_P="${MY_PN}-${PV}"
|
|
|
|
DESCRIPTION="Small collection of linux input layer utils"
|
|
HOMEPAGE="https://www.kraxel.org/blog/linux/input/"
|
|
SRC_URI="https://www.kraxel.org/releases/input/${MY_P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm ~arm64 ppc ~riscv x86"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_install() {
|
|
emake install bindir="${D}"/usr/bin mandir="${D}"/usr/share/man STRIP=""
|
|
dodoc lircd.conf
|
|
dodoc README
|
|
}
|