blob: 107fddfd7dcd39b5627ddaf5e67702fb80633efa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Maintainer: Michael Schubert <mschu.dev at gmail> github.com/mschubert/PKGBUILDs
pkgname=multiqc
pkgver=1.27
pkgrel=1
pkgdesc="Aggregate results from bioinformatics analyses across many samples into a single report"
arch=('any')
url="https://multiqc.info/"
license=('GPL-3.0-or-later')
depends=(
python-click
python-coloredlogs
python-dotenv
python-humanize
python-importlib-metadata
python-jinja
python-kaleido-bin
python-markdown
python-matplotlib
python-numpy
python-requests
python-pillow
python-plotly
python-yaml
python-pyaml-env
python-rich
python-rich-click
python-spectra
python-tqdm
python-pydantic
python-typeguard
)
makedepends=(python-build python-installer python-wheel)
source=($pkgname-$pkgver.tar.gz::https://github.com/MultiQC/MultiQC/archive/refs/tags/v$pkgver.tar.gz)
sha256sums=('c2b82da9712b89357549983c0c38dc4cdc33b8589b29c62252bc33e7c3311584')
build() {
cd MultiQC-$pkgver
python -m build --wheel --no-isolation
}
package() {
cd MultiQC-$pkgver
python -m installer --destdir="$pkgdir" dist/*.whl
}
|