1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 02:05:16 +03:00
aports/community/py3-matplotlib-inline/APKBUILD
psykose deb62258ec */*: set --skip-build for python installs
this marginally increases install speed by not checking if it needs a rebuild.
also remove --prefix=/usr as it defaults to /usr already.

might break a build or two, will fix later
2023-01-10 04:19:31 +01:00

26 lines
831 B
Text

# Contributor: Aiden Grossman <agrossman154@yahoo.com>
# Maintainer: Aiden Grossman <agrossman154@yahoo.com>
pkgname=py3-matplotlib-inline
pkgver=0.1.6
pkgrel=1
pkgdesc="Inline matplotlib backend for jupyter"
url="https://github.com/ipython/matplotlib-inline"
arch="noarch"
license="BSD-3-Clause"
depends="py3-traitlets"
makedepends="py3-setuptools"
options="!check" # no test present
source="$pkgname-$pkgver.tar.gz::https://github.com/ipython/matplotlib-inline/archive/refs/tags/$pkgver.tar.gz"
builddir="$srcdir/matplotlib-inline-$pkgver"
build() {
python3 setup.py build
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
7d34f5a86d65d7a2017cf924dc363d7578d1eb14943c3de56e5a0ac79d92d674b387c5528ea76e9e11e0193e71d8cd1315ceb517e9c9678c41ed412e8fd42c04 py3-matplotlib-inline-0.1.6.tar.gz
"