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-jupyterlab_pygments/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

25 lines
851 B
Text

# Contributor: Aiden Grossman <agrossman154@yahoo.com>
# Maintainer: Aiden Grossman <agrossman154@yahoo.com>
pkgname=py3-jupyterlab_pygments
pkgver=0.2.2
pkgrel=1
pkgdesc="Pygments theme using JupyterLab CSS variables"
url="https://github.com/jupyterlab/jupyterlab_pygments"
arch="noarch"
license="BSD-3-Clause"
makedepends="py3-setuptools py3-jupyter-packaging"
options="!check" # no test suite
source="$pkgname-$pkgver.tar.gz::https://github.com/jupyterlab/jupyterlab_pygments/archive/refs/tags/$pkgver.tar.gz"
builddir="$srcdir/jupyterlab_pygments-$pkgver"
build() {
python3 setup.py build
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
bf689499f1f9cf3a34e89d90c33003ab05c9aa746e6cfb6dc34a20126be6f09710429fe9d1778a80e55b788c7182f0b276009d249770e2fdb6df1f8619e24810 py3-jupyterlab_pygments-0.2.2.tar.gz
"