blob: 0365d665952e5e5b54ed8140fd2954154e56c319 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit udev
DESCRIPTION="Comprehensive list of udev rules to connect to android devices"
HOMEPAGE="https://github.com/M0Rf30/android-udev-rules"
SRC_URI="https://github.com/M0Rf30/android-udev-rules/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
acct-group/adbusers
virtual/udev
"
src_install() {
udev_dorules 51-android.rules
}
pkg_postinst() {
einfo "To be able to use android devices,"
einfo "add yourself to the 'adbusers' group by calling"
einfo " usermod -a -G adbusers <user>"
}
|