summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4cb97482438bf6905db1af53c9be12724c5cd481 (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: Clint Valentine <valentine.clint@gmail.com>

_name=adjusttext
pkgname=python-adjusttext
pkgver=1.3.0
pkgrel=1
pkgdesc='Iteratively adjust text position in matplotlib plots to minimize overlaps'
arch=(any)
url="https://github.com/Phlya/$_name"
license=(MIT)
depends=(python python-numpy python-matplotlib python-scipy)
makedepends=(python-setuptools python-build python-installer python-wheel)
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz")
sha256sums=('4ab75cd4453af4828876ac3e964f2c49be642ea834f0c1f7449558d5f12cbca1')

build() {
	cd "$_name-$pkgver"
	python -m build --wheel --no-isolation
}

package() {
	cd "$_name-$pkgver"
	python -m installer --destdir="$pkgdir" dist/*.whl
	install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}