33 lines
1,008 B
Bash
33 lines
1,008 B
Bash
# Template file for 'python-pandas'
|
|
pkgname=python-pandas
|
|
version=0.18.1
|
|
revision=1
|
|
wrksrc="pandas-${version}"
|
|
build_style=python-module
|
|
python_versions="2.7 3.4"
|
|
hostmakedepends="python-setuptools python3.4-setuptools"
|
|
makedepends="python-devel python3.4-devel python-numpy python3.4-numpy
|
|
python-dateutil python3.4-dateutil python-pytz python3.4-pytz"
|
|
depends="python-numpy python-dateutil python-pytz"
|
|
pycompile_module="pandas"
|
|
short_desc="Python2 data analysis library"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="http://pandas.pydata.org/"
|
|
license="3-clause-BSD"
|
|
distfiles="${PYPI_SITE}/p/pandas/pandas-${version}.tar.gz"
|
|
checksum=d2e483692c7915916dffd1b83256ea9761b4224c8d45646ceddf48b977ee77b2
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3.4-pandas_package() {
|
|
depends="python3.4-numpy python3.4-dateutil python3.4-pytz"
|
|
pycompile_version="3.4"
|
|
pycompile_module="pandas"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3.4
|
|
vlicense LICENSE
|
|
}
|
|
}
|