summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 78d3d6c16d49379d6c16aaaa7e183d73f02a88d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: Mohammadreza Abdollahzadeh <morealaz at gmail dot com>

pkgname=python-obspy-docs
pkgver=1.3.1
pkgrel=1
pkgdesc='Set of HTML documentation for Obspy seismological framework.'
arch=('any')
url='http://docs.obspy.org'
license=('LGPL')
options=('docs')
source=("https://github.com/obspy/obspy/releases/download/${pkgver}/obspy-${pkgver}-documentation.tgz")
sha256sums=('bf9674ade7f351c59c0ef016c9714212d1c99ef0bcd2c9743644aa878a2a8d14')

package() {
    install -d ${pkgdir}/usr/share/doc/python-obspy
    cp -r obspy-documentation-${pkgver} ${pkgdir}/usr/share/doc/python-obspy/html
    chmod -R a=rX,u=rwX ${pkgdir}/usr/share/doc/python-obspy/html
}
# vim:set ts=4 sw=4 et: