blob: 2a70d84feed89386bd39500a8ace706332ae965c (
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
|
# Maintainer: userbyte <contact@userbyte.xyz>
pkgname='python-pyamlboot-git'
_pkgname="${pkgname/-git/}"
pkgver=r91.d7806ac
pkgrel=1
pkgdesc="Amlogic USB Boot Protocol Library "
url="https://github.com/superna9999/pyamlboot"
depends=('python')
license=('MIT')
arch=('any')
source=("git+$url.git")
_srcname="${_pkgname/python-/}"
makedepends=(
'git'
'python-build'
'python-installer'
'python-setuptools>=42'
'python-wheel'
)
depends=(
'python>=3.7'
'python-dateparser'
'python-dateutil'
'python-lxml'
)
source=("git+$url.git")
provides=("$_pkgname")
conflicts=("$_pkgname")
sha256sums=('SKIP')
pkgver() {
cd "$_srcname"
( set -o pipefail
git describe --long --abbrev=7 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
)
}
build() {
cd "$_srcname"
python -m build --wheel --no-isolation
}
package() {
cd "$_srcname"
python -m installer --destdir="$pkgdir" dist/*.whl
install -vDm0644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
install -vDm0644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
}
# eof
|