diff options
author | notEvil | 2024-05-09 10:48:50 +0200 |
---|---|---|
committer | notEvil | 2024-05-09 10:48:50 +0200 |
commit | 0ad52c20d9036c724596cf31be5e63efa997911a (patch) | |
tree | 44d60ef346d9dc3b15b1c4c6b4e8d140069bd7a9 | |
parent | cbea941e63b7bf00f83b1b63076348ca40bd17e2 (diff) | |
download | aur-0ad52c20d9036c724596cf31be5e63efa997911a.tar.gz |
added missing make dependencies
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 8 |
2 files changed, 9 insertions, 3 deletions
@@ -1,13 +1,15 @@ pkgbase = python-bokeh pkgdesc = Interactive Web Plotting for Python pkgver = 3.4.1 - pkgrel = 1 + pkgrel = 2 url = http://bokeh.pydata.org/ arch = any license = BSD makedepends = python-build makedepends = python-installer + makedepends = python-wheel makedepends = python-setuptools-git-versioning + makedepends = python-colorama depends = python-jinja depends = python-contourpy depends = python-numpy @@ -3,7 +3,7 @@ pkgname=python-bokeh pkgver=3.4.1 -pkgrel=1 +pkgrel=2 pkgdesc='Interactive Web Plotting for Python' arch=('any') url='http://bokeh.pydata.org/' @@ -30,7 +30,11 @@ optdepends=('python-selenium: svg export' 'python-psutil: detailed memory logging' 'python-networkx: plot directly from NetworkX data' 'python-sphinx: support sphinx documentation') -makedepends=('python-build' 'python-installer' 'python-setuptools-git-versioning') +makedepends=('python-build' + 'python-installer' + 'python-wheel' + 'python-setuptools-git-versioning' + 'python-colorama') build() { cd "$srcdir/bokeh-$pkgver" |