blob: 79e73243cc68956d9744bbb9e73ce3a7cb7e2eb1 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Maintainer:
# Contributor: Ben Westover <kwestover.kw@gmail.com>
_pkgname="mtkclient"
pkgname="$_pkgname-git"
pkgver=2.1.3.r18.g0fdbe49
pkgrel=2
pkgdesc="Unofficial MTK reverse engineering and flash tool"
url="https://github.com/bkerler/mtkclient"
license=('GPL-3.0-only')
arch=('any')
depends=(
'pyside6'
'python'
'python-capstone'
'python-colorama'
'python-fusepy' # AUR
'python-keystone'
'python-pycryptodomex'
'python-pyserial'
'python-pyusb'
)
makedepends=(
'git'
'python-build'
'python-hatchling'
'python-installer'
'python-wheel'
)
optdepends=(
'android-udev: ADB/Fastboot support'
)
provides=("$_pkgname")
conflicts=("$_pkgname")
_pkgsrc="$_pkgname"
source=("$_pkgsrc"::"git+$url.git")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgsrc"
git describe --long --tags --abbrev=7 --exclude='*[a-zA-Z][a-zA-Z]*' \
| sed -E 's/^[^0-9]*//;s/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd "$_pkgsrc"
python -m build --wheel --no-isolation
}
package() {
cd "$_pkgsrc"
python -m installer --destdir="$pkgdir" dist/*.whl
# udev rules
local _plugdev_regex='s&GROUP="plugdev"&TAG+="uaccess"&g'
install -Dm644 /dev/stdin "$pkgdir"/usr/lib/udev/rules.d/51-mtkclient-edl.rules <<< "$(sed -e "$_plugdev_regex" Setup/Linux/51-edl.rules)"
install -Dm644 Setup/Linux/52-mtk.rules "$pkgdir"/usr/lib/udev/rules.d/52-mtkclient.rules
}
|