blob: 0d4b5e54035ec43572f32049d2bd54fb6b0f6cd4 (
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
|
# Maintainer: Jason McGillivray < mcgillivray dot jason at gmail dot com>
pkgname=py3status-http-monitor
pkgdesc="Python module for py3status to monitor http services"
pkgver=0.1.8
pkgrel=1
arch=('any')
license=('MIT')
depends=('python' 'py3status')
makedepends=('python-setuptools' 'python-poetry' 'python-build' 'python-installer')
url="https://github.com/mcgillij/py3status-http-monitor"
#source=("py3status_http_monitor-$pkgver.tar.gz")
source=("https://github.com/mcgillij/py3status-http-monitor/releases/download/$pkgver/py3status_http_monitor-$pkgver.tar.gz")
md5sums=('c423e3df8cf78e379455ffcf20ae1f5c')
build() {
cd "$srcdir/py3status_http_monitor-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/py3status_http_monitor-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|