mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
41 lines
1.4 KiB
Bash
41 lines
1.4 KiB
Bash
|
# Maintainer: graysky <graysky AT archlinux DOT us>
|
||
|
# Contributor: loqs
|
||
|
|
||
|
_pkgname=dufte
|
||
|
pkgname=python-dufte
|
||
|
pkgver=0.2.20
|
||
|
pkgrel=1
|
||
|
pkgdesc='Creates clean and beautiful plots that work on light and dark backgrounds.'
|
||
|
arch=(any)
|
||
|
url='https://github.com/nschloe/duf'
|
||
|
license=(GPL3)
|
||
|
depends=(python-matplotlib python-numpy)
|
||
|
makedepends=(python-pytest python-setuptools python-build python-install python-wheel)
|
||
|
source=("$pkgname-$pkgver.tar.gz::https://github.com/nschloe/$_pkgname/archive/v$pkgver.tar.gz")
|
||
|
b2sums=('131896389112dbc5e8aee1844ee2576bc90fcf52d9c57f4663f354cefecefa1e82977ab392d5584362ab0c7abc477346264a1db1f174d0ef0a7dc7e970e87629')
|
||
|
|
||
|
build() {
|
||
|
cd $_pkgname-$pkgver
|
||
|
python -m build --wheel --skip-dependency-check --no-isolation
|
||
|
}
|
||
|
|
||
|
check() {
|
||
|
cd $_pkgname-$pkgver
|
||
|
mkdir -p temp
|
||
|
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
|
||
|
python -m install --optimize=1 --destdir=temp dist/*.whl
|
||
|
PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$site_packages" python -m pytest
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd $_pkgname-$pkgver
|
||
|
export PYTHONHASHSEED=0
|
||
|
python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
|
||
|
|
||
|
# 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/$_pkgname-$pkgver.dist-info/LICENSE \
|
||
|
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
||
|
}
|