blob: 09153b6e9016d3c0d4b8ddb130a99ea7e8b9e032 (
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-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit vcs-snapshot udev user
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.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="virtual/udev"
DEPEND="${RDEPEND}"
src_install() {
udev_dorules 51-android.rules
}
pkg_setup() {
enewgroup adbusers
}
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>"
}
|