blob: 6a373ea9fbc25fe2025183662707db83c0b41269 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
Maintainer='Gilles Hamel <hamelg@laposte.net>'
pkgname=python-whisper
pkgver=1.1.10
pkgrel=1
pkgdesc='Fixed-size database that provides fast, reliable storage of numeric data over time.'
arch=('any')
url='https://github.com/graphite-project/whisper'
license=('Apache')
depends=('python')
conflicts=('python2-whisper')
makedepends=('python-setuptools')
options=(!emptydirs)
source=($pkgname-$pkgver.tar.gz::"https://github.com/graphite-project/whisper/archive/$pkgver.tar.gz")
md5sums=('a45cd7bc76df9e887674b1984f83f72f')
package() {
cd "$srcdir/whisper-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
}
# vim:set ts=2 sw=2 et:
|