blob: e79038d677353c7939d972fd3d0ad411221a747a (
plain)
1 # Description: Visually (c)lean, responsive, configurable theme for Sphinx.
2 # URL: https://alabaster.readthedocs.io/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-setuptools
5
6 name=python3-alabaster
7 version=0.7.13
8 release=1
9 source=(https://github.com/bitprophet/${name#*-}/archive/$version/${name#*-}-$version.tar.gz)
10
11 build() {
12 cd ${name#*-}-$version
13
14 /usr/bin/python3 setup.py build
15 /usr/bin/python3 setup.py install --prefix=/usr --root=$PKG --optimize=1
16
17 find $PKG -perm -g+w | xargs chmod g-w
18 }
|