mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-16 20:55:20 +03:00
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
30 lines
834 B
Text
30 lines
834 B
Text
# Contributor: Charles Pritchard <chuck@jumis.com>
|
|
# Maintainer: Charles Pritchard <chuck@jumis.com>
|
|
pkgname=py3-biopython
|
|
pkgver=1.80
|
|
pkgrel=0
|
|
pkgdesc="Python tools for computational molecular biology."
|
|
options="!check" # test_NCBI_qblast hangs
|
|
url="https://biopython.org/"
|
|
arch="all"
|
|
license="BSD-3-Clause"
|
|
depends="py3-numpy python3"
|
|
makedepends="py3-setuptools py3-numpy-dev python3-dev"
|
|
source="https://files.pythonhosted.org/packages/source/b/biopython/biopython-$pkgver.tar.gz"
|
|
builddir="$srcdir/biopython-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
f0a87abde6756ddd39469df55a22fff78d5b60e1b9b02ba93661cb05d71e3a2ba20ff5a1695bee0e62b867dd5ac87020117acf302bc0e2215ffe38b657f7632c biopython-1.80.tar.gz
|
|
"
|