summaryrefslogtreecommitdiff
path: root/dev-util/android-udev-rules/android-udev-rules-20220903.ebuild
blob: e89254bcee989dfc4af5452ebb2f60e63a529674 (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
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit udev

DESCRIPTION="Android udev rules list aimed to be the most comprehensive on the net"
HOMEPAGE="https://github.com/M0Rf30/android-udev-rules"
SRC_URI="https://github.com/M0Rf30/android-udev-rules/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"

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

RDEPEND="
	acct-group/android
	virtual/udev
"

src_prepare() {
	default

	# Use the pre-existing android group
	sed -i 's/GROUP="adbusers"/GROUP="android"/' 51-android.rules || die
}

src_install() {
	udev_dorules 51-android.rules
	einstalldocs
}

pkg_postinst() {
	udev_reload
}

pkg_postrm() {
	udev_reload
}