summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 078a2b8c3701c8e76ca2e2c3abb0dd15282090aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Maintainer='Gilles Hamel <hamelg@laposte.net>'
pkgname=python2-whisper
pkgver=1.0.1
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=('python2')
makedepends=('python2-setuptools')
options=(!emptydirs)
source=("https://github.com/graphite-project/whisper/archive/$pkgver.tar.gz")
md5sums=('ae80a2d00fd8a2184db4cf85ede06ed0')

package() {
  cd "$srcdir/whisper-$pkgver"
  python2 setup.py install --root="$pkgdir/" --optimize=1
}

# vim:set ts=2 sw=2 et: