blob: 673487c09224657fa5d71b939c6652a410a82455 (
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
|
# Maintainer: Shayne Hartford <shayneehartford@gmail.com>
pkgname=tasmotizer-git
_pkgname=tasmotizer
pkgver=r43.a2d048f
pkgrel=1
pkgdesc="The full-featured flashing tool for Tasmota. With the great ESPtool from Espressif under the hood, and all required settings by default."
arch=('any')
url="https://github.com/tasmota/$_pkgname"
license=('GPL3')
depends=(
'python-pyqt5'
'python-pyserial'
'qt5-serialport'
)
makedepends=(
'git'
'python-setuptools'
)
provides=('tasmotizer')
conflicts=('tasmotizer')
source=(
"git+$url.git"
"$_pkgname.desktop"
)
sha256sums=(
'SKIP'
'21f01de23fbda6a08105569ada486a2df50ad385dca862383ddfca7d3a057f74'
)
pkgver() {
cd "$srcdir/$_pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$srcdir/$_pkgname"
python setup.py install --root="$pkgdir" --optimize=1
mv $pkgdir/usr/bin/"$_pkgname".py $pkgdir/usr/bin/"$_pkgname"
install -Dm644 "../$_pkgname.desktop" "$pkgdir/usr/share/applications/$_pkgname.desktop"
}
|