1 # Contributor: Fazlul Shahriar <fshahriar@gmail.com>
2 pkgname=scikits-timeseries
5 pkgdesc="Library for manipulating, reporting, and plotting time series of various frequencies."
7 url="http://pytseries.sourceforge.net/"
9 depends=('python2' 'python2-numpy' 'scikits-base')
10 makedepends=('setuptools')
11 optdepends=('python-scipy: Required for some sub-modules (e.g. interpolate, moving_funcs).'
12 'python2-matplotlib: Support for plotting time series.'
13 'python-pytables: Support for reading/writing HDF5 file format.')
14 source=("http://downloads.sourceforge.net/project/pytseries/scikits.timeseries/$pkgver/scikits.timeseries-$pkgver.tar.gz")
15 md5sums=('103d383f98be80c24c95e608dc25a6ca')
20 # All the directories have executable bit missing
21 for d in $(tar tzf scikits.timeseries-$pkgver.tar.gz | grep '/$')
26 cd "$srcdir/scikits.timeseries-$pkgver"
28 python2 setup.py install --root=$pkgdir
29 install -Dm644 LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
31 # provided by scikits-base
32 rm -f $pkgdir/usr/lib/python*/site-packages/scikits/__init__.py
35 # vim:set ts=2 sw=2 et: