Date: Friday, April 7, 2023 @ 07:35:38
Author: felixonmars
Revision: 1440872
archrelease: copy trunk to community-staging-any
Added:
esptool/repos/community-staging-any/
esptool/repos/community-staging-any/PKGBUILD
(from rev 1440871, esptool/trunk/PKGBUILD)
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: esptool/repos/community-staging-any/PKGBUILD (from rev 1440871,
esptool/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-07 07:35:38 UTC (rev 1440872)
@@ -0,0 +1,26 @@
+# Maintainer: Jelle van der Waa <[email protected]>
+# Contributor: Marcin (CTRL) Wieczorek <[email protected]>
+# Contributor: Marcin Kornat <[email protected]>
+# Contributor: MatejSpindler <[email protected]>
+
+pkgname=esptool
+pkgver=4.5.1
+pkgrel=2
+pkgdesc="A cute Python utility to communicate with the ROM bootloader in
Espressif ESP8266"
+arch=('any')
+url="https://github.com/espressif/esptool"
+license=('GPL2')
+makedepends=('git' 'python-setuptools')
+depends=('python-pyserial' 'python-ecdsa' 'python-pyaes' 'python-bitstring'
'python-reedsolo' 'python-cryptography')
+source=($pkgname-$pkgver.tar.gz::https://github.com/espressif/esptool/archive/v${pkgver}.tar.gz)
+sha512sums=('4b665018eb38796cf785ba0caa20435a1bfa5ad5a50f57207d84242307d354405224ccf216b2cfd8b72602d1f04caa4af38feedc7eb7d8984a1e9e308f8789c4')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ python3 setup.py build
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ python3 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+}