blob: 6abd111d3ee4dbdc560d38a864274ca78d4fb7aa (
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
33
34
35
36
37
38
39
40
|
# Copyright 2020, 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit udev
MY_P="solo1-${PV}"
DESCRIPTION="udev rules for the Solo FIDO2 & U2F USB+NFC security key"
HOMEPAGE="
https://solokeys.com/
https://github.com/solokeys/solo1
"
SRC_URI="https://github.com/solokeys/solo1/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 MIT )"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="virtual/udev"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"
src_compile() {
# Omitting src_compile() would invoke make, leaving it empty is not allowed.
:
}
src_install() {
udev_dorules udev/70-solokeys-access.rules
}
pkg_postinst() {
udev_reload
}
pkg_postrm() {
udev_reload
}
|