31 lines
936 B
Bash
31 lines
936 B
Bash
# Template file for 'python-scikit-learn'
|
|
pkgname=python-scikit-learn
|
|
version=0.19.2
|
|
revision=1
|
|
wrksrc="scikit-learn-${version}"
|
|
build_style=python-module
|
|
pycompile_module="sklearn"
|
|
hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
|
|
makedepends="python-devel python3-devel python-scipy python3-scipy"
|
|
depends="python-scipy"
|
|
short_desc="Python2 modules for machine learning and data mining"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="http://scikit-learn.org/"
|
|
license="BSD-3-Clause"
|
|
distfiles="https://github.com/scikit-learn/scikit-learn/archive/${version}.tar.gz"
|
|
checksum=3024e3dc85ca8b26de33c2c5aec7c7a5f1f4a750463cb1378f1c61b4dc28ec58
|
|
|
|
post_install() {
|
|
vlicense COPYING LICENSE
|
|
}
|
|
|
|
python3-scikit-learn_package() {
|
|
depends="python3-scipy"
|
|
pycompile_module="sklearn"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense COPYING LICENSE
|
|
}
|
|
}
|