blob: e13b2403fef24622cfdc4b8a88d26ea77e9327c7 (
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
64
65
66
67
68
69
|
#!/bin/bash -e
#
# Maintainer: Ľubomír 'the-k' Kučera <lubomir.kucera.jr at gmail.com>
pkgname=beautysh
pkgver=6.4.3
pkgrel=1
pkgdesc="A Bash beautifier for the masses"
arch=(
any
)
url=https://github.com/lovesegfault/beautysh
license=(
MIT
)
depends=(
python
python-colorama
python-editorconfig
python-tomli
)
checkdepends=(
python-pytest
python-hypothesis
python-yaml
)
makedepends=(
python-build
python-hatchling
python-installer
python-wheel
)
source=(
"${url}/releases/download/v${pkgver}/beautysh-${pkgver}.tar.gz"
)
sha256sums=('2aceb602fa7e27dafd24d5bc480986e17870873c2827a2b8d720118cafac3018')
: "${pkgname}"
: "${pkgrel}"
: "${pkgdesc}"
: "${arch[@]}"
: "${license[@]}"
: "${depends[@]}"
: "${checkdepends[@]}"
: "${makedepends[@]}"
: "${source[@]}"
: "${sha256sums[@]}"
build() {
cd "beautysh-${pkgver}"
python -m build --no-isolation --wheel
}
check() {
cd "beautysh-${pkgver}"
pytest
}
package() {
: "${pkgdir:?}"
cd "beautysh-${pkgver}"
python -m installer --destdir "${pkgdir}" dist/beautysh-"${pkgver}"-*-none-any.whl
install -Dvm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|