summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 81c2078e78b45db83f54d7314013205e9faa91c8 (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
# Maintainer: Astro Benzene <universebenzene at sina dot com>
pkgbase=python2-stsci_rtd_theme
_pyname=${pkgbase#python2-}
pkgname=("python2-${_pyname}")
pkgver=0.0.2
pkgrel=1
pkgdesc="STScI Branded Sphinx theme"
arch=('any')
url="https://github.com/spacetelescope/stsci_rtd_theme"
license=('BSD')
makedepends=('python2-setuptools')
checkdepends=('python2-sphinx')
source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz")
md5sums=('d04f43974914985dcc4312ba1cce6322')

build() {
    cd ${srcdir}/${_pyname}-${pkgver}

    python2 setup.py build
}

check() {
    cd ${srcdir}/${_pyname}-${pkgver}

    python2 setup.py test
}

package_python2-stsci_rtd_theme() {
    depends=('python2-sphinx>=1.3')
    cd ${srcdir}/${_pyname}-${pkgver}

    install -D -m644 LICENSE* -t "${pkgdir}/usr/share/licenses/${pkgname}"
    install -D -m644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
    python2 setup.py install --root=${pkgdir} --prefix=/usr --optimize=1
}