summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9d9f59e5c8562d6fd7057ab4ff395f309560d593 (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
# Maintainer: Gabriel Magno <gabrielmagno1@gmail.com>
# Contributor: Michał Pałubicki <maln0ir@gmx.com>

_pkgname=agate-excel
pkgname=python-$_pkgname
pkgver=0.2.1
pkgrel=1
pkgdesc="Adds read support for Excel files (xls and xlsx) to agate"
arch=('any')
url="http://agate-excel.readthedocs.org/"
license=('MIT')
depends=('python'
         'python-nose'
         'python-tox'
         'python-sphinx'
         'python-sphinx_rtd_theme'
         'python-wheel'
         'python-xlrd'
         'python-openpyxl'
         'python-agate')

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

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

sha256sums=('2a850afe5576b5e2ffc8ea8115bcc45a6735e0b8df63c4ceeac33bbb9ed27de3')

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