summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2e39aceea5f6f6e8d82c0413419eddf214637c28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Maintainer: Gabriel Magno <gabrielmagno1@gmail.com>
# Contributor: Michał Pałubicki <maln0ir@gmx.com>

_pkgname=agate
pkgname=python-$_pkgname
pkgver=1.6.0
pkgrel=1
pkgdesc="A data analysis library that is optimized for humans instead of machines"
arch=('any')
url="http://agate.readthedocs.org/"
license=('MIT')
# According to requirements-py3.txt
depends=('python'
         'python-nose'
         'python-tox'
         'python-sphinx'
         'python-coverage'
         'python-six'
         'python-sphinx_rtd_theme'
         'python-wheel'
         'python-pytimeparse'
         'python-babel'
         'python-parsedatetime'
         'python-pytz'
         'python-isodate'
         'python-slugify'
         'python-lxml'
         'python-cssselect'
         'python-leather')

source=("https://github.com/wireservice/agate/archive/${pkgver}.tar.gz")

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

sha256sums=('e5ab2a32aa866757a98b42cf46580014064dbb38a0395ccf82c8e85593904fef')

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