Advertisement
Guest User

PKGBUILD for python-altair

a guest
Sep 5th, 2019
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.89 KB | None | 0 0
  1. # Maintainer: Ista Zahn <istazahn[at]gmail[dot]com>
  2.  
  3. pkgbase=python-altair
  4. _pyname=altair
  5. pkgname=('python-altair')
  6. depends=('python' 'python-entrypoints' 'python-jsonschema' 'python-numpy' 'python-pandas' 'python-six' 'python-toolz')
  7. makedepends=('python-setuptools')
  8. optdepends=('python-selenium: png and svg export support')
  9. pkgver=3.2.0
  10. pkgrel=1
  11. pkgdesc=" Declarative statistical visualization library for Python"
  12. arch=('any')
  13. url="https://altair-viz.github.io/"
  14. license=('MIT')
  15. source=("${_pyname}-${pkgver}.tar.gz::https://github.com/altair-viz/altair/archive/v3.2.0.tar.gz")
  16. sha256sums=('SKIP')
  17.  
  18. package() {
  19.   cd "${srcdir}/${_pyname}-${pkgver}"
  20.   python setup.py install -O1 --root="${pkgdir}"
  21.   install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
  22.   install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README"
  23.  
  24. }
  25.  
  26. # vim:set et sw=2 ts=2 tw=79:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement