27 lines
782 B
Bash
27 lines
782 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=python-sphinx-alabaster-theme
|
|
pkgver=0.7.12
|
|
pkgrel=2
|
|
pkgdesc='Sphinx default theme'
|
|
url='https://github.com/bitprophet/alabaster'
|
|
arch=('any')
|
|
license=('Modified-BSD')
|
|
makedepends=('python-setuptools')
|
|
source=("https://pypi.org/packages/source/a/alabaster/alabaster-$pkgver.tar.gz")
|
|
sha512sums=('e3bfd0c92ce01f08d5e6d9dc1ef0967ca1f54827e08756f4a0ba7be8d3b8bec7f2e53a169b831ff5ce2d2548f7f52c6e518bcc513e49bb3e4c38274293aebbac')
|
|
|
|
build() {
|
|
cd alabaster-$pkgver
|
|
python setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd alabaster-"$pkgver"
|
|
python setup.py install --root="$pkgdir" --optimize=1
|
|
install -d "$pkgdir/usr/share/licenses/$pkgname"
|
|
install -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|