PKGBUILDs/aur/python-matplotx/PKGBUILD

41 lines
1.4 KiB
Bash
Raw Normal View History

# Maintainer: graysky <graysky AT archlinux DOT us>
# Contributer: Carlos Aznarán <caznaranl@uni.pe>
2022-01-30 17:59:13 +00:00
# ALARM:
# - remove check function and check deps as most do not exist for us
_base=matplotx
pkgname=python-${_base}
pkgdesc="Useful styles and extensions for Matplotlib"
2022-02-03 15:08:41 +00:00
pkgver=0.3.3
pkgrel=1
arch=(any)
2022-01-30 17:59:13 +00:00
url="https://github.com/nschloe/${_base}"
license=(MIT)
2022-01-30 17:59:13 +00:00
depends=(python-matplotlib)
makedepends=(python-build python-flit-core python-install)
2022-01-12 11:17:35 +00:00
optdepends=('python-networkx: for creation of graphs'
'python-pypng: for iterator support')
2022-01-30 17:59:13 +00:00
source=(https://pypi.org/packages/source/${_base::1}/${_base}/${_base}-${pkgver}.tar.gz)
2022-02-03 15:08:41 +00:00
sha512sums=('173a04efff32547e281e868942de3a188f65030c3dd974c4a60652699170bbbf31ebc12a02f67f5244855b038c2d0c450cd38cb9bb2060923b933ed38da73278')
build() {
2022-01-30 17:59:13 +00:00
cd "${_base}-${pkgver}"
export PYTHONHASHSEED=0
python -m build --wheel --skip-dependency-check --no-isolation
}
package() {
2022-01-30 17:59:13 +00:00
cd "${_base}-${pkgver}"
PYTHONPYCACHEPREFIX="${PWD}/.cache/cpython/" python -m install --optimize=1 --destdir="${pkgdir}" dist/*.whl
# https://github.com/FFY00/python-install/pull/6
chmod +x ${pkgdir}/usr/bin/*
# Symlink license file
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
install -d "${pkgdir}/usr/share/licenses/${pkgname}"
ln -s "${site_packages}/${_base}-$pkgver.dist-info/LICENSE" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}