blob: b64022070d639ce879130aa352b93883b3c9e4bd (
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
|
# Maintainer: taotieren <admin@taotieren.com>
pkgname=python-jlc2kicadlib
_name=${pkgname#python-}
pkgver=1.0.32
pkgrel=0
epoch=
pkgdesc="JLC2KiCad_lib is a python script that generate a component library (symbol, footprint and 3D model) for KiCad from the JLCPCB/easyEDA library."
arch=('any')
url="https://pypi.org/project/JLC2KiCadLib"
license=(MIT)
groups=()
provides=(${pkgname})
conflicts=(${pkgname})
_pydeps=(
requests
kicadmodtree)
depends=('python'
"${_pydeps[@]/#/python-}")
makedepends=(python-build
python-installer
python-wheel
python-setuptools)
options=('!strip')
source=("${_name//-/_}-${pkgver}.tar.gz::https://files.pythonhosted.org/packages/source/${_name::1}/$_name/${_name//-/_}-$pkgver.tar.gz")
noextract=()
sha256sums=('ef9c51b3f612a5e055f356b19b657a94dc907d8c67708ebb976d698defa06448')
build() {
cd "${srcdir}/${_name//-/_}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${srcdir}/${_name//-/_}-${pkgver}"
python -m installer --destdir="${pkgdir}" dist/*.whl
}
|