diff options
author | Britney Fransen <brfransen@gmail.com> | 2020-11-15 22:03:02 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2020-11-15 22:03:02 (GMT) |
commit | 0b8ac4fbbde43a0a56647c6bdbf530eb3a61c246 (patch) | |
tree | 5481201c3076fcd5f17c7e4d625461c2a84992af /abs/core/python_modules | |
parent | 021025fd98816d54e84aa76bfd1fa36f1d146798 (diff) | |
download | linhes_pkgbuild-0b8ac4fbbde43a0a56647c6bdbf530eb3a61c246.zip linhes_pkgbuild-0b8ac4fbbde43a0a56647c6bdbf530eb3a61c246.tar.gz linhes_pkgbuild-0b8ac4fbbde43a0a56647c6bdbf530eb3a61c246.tar.bz2 |
python-sphinx-alabaster-theme: 0.7.12
Diffstat (limited to 'abs/core/python_modules')
-rw-r--r-- | abs/core/python_modules/python-sphinx-alabaster-theme/PKGBUILD | 25 |
1 files changed, 6 insertions, 19 deletions
diff --git a/abs/core/python_modules/python-sphinx-alabaster-theme/PKGBUILD b/abs/core/python_modules/python-sphinx-alabaster-theme/PKGBUILD index d3203be..9900d02 100644 --- a/abs/core/python_modules/python-sphinx-alabaster-theme/PKGBUILD +++ b/abs/core/python_modules/python-sphinx-alabaster-theme/PKGBUILD @@ -1,43 +1,30 @@ -# $Id$ # Maintainer: Johannes Löthberg <johannes@kyriasis.com> # Contributor: xantares -pkgbase=python-sphinx-alabaster-theme -pkgname=(python-sphinx-alabaster-theme python2-sphinx-alabaster-theme) -pkgver=0.7.10 -pkgrel=1 +pkgname=python-sphinx-alabaster-theme +pkgver=0.7.12 +pkgrel=6 pkgdesc="Sphinx default theme" url='https://github.com/bitprophet/alabaster' arch=('any') license=('custom:BSD') +depends=('python') makedepends=('python-setuptools' 'python2-setuptools') source=("https://pypi.org/packages/source/a/alabaster/alabaster-$pkgver.tar.gz") -md5sums=('7934dccf38801faa105f6e7b4784f493') +md5sums=('3591827fde96d1dd23970fb05410ed04') build() { - cp -r alabaster-"$pkgver" alabaster-"$pkgver"-py2 - cd alabaster-"$pkgver" python setup.py build - - cd "$srcdir"/alabaster-"$pkgver"-py2 - python2 setup.py build } -package_python-sphinx-alabaster-theme() { +package() { cd alabaster-"$pkgver" python setup.py install --root="$pkgdir" --optimize=1 install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"/LICENSE } - -package_python2-sphinx-alabaster-theme() { - cd alabaster-"$pkgver"-py2 - python2 setup.py install --root="$pkgdir" --optimize=1 - - install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"/LICENSE -} |