initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
_srcname=sphinxcontrib-devhelp
pkgname=python-sphinxcontrib-devhelp
pkgver=1.0.2
pkgrel=0
pkgdesc='Sphinx extension which outputs Devhelp document'
arch=('any')
url='https://github.com/sphinx-doc/sphinxcontrib-devhelp'
license=('Simplified-BSD')
makedepends=('python-setuptools')
# checkdepends=('python-pytest' 'python-sphinx')
source=("$pkgname-$pkgver.tar.gz::https://github.com/sphinx-doc/sphinxcontrib-devhelp/archive/$pkgver.tar.gz")
sha512sums=('c69e85aa59d1a824c191c40cf537e65627aabe46cc872baf2f4a95d1675f1efa78dceab2a167da87198f227d495934c4ced30bbd2359d08e8b26e23df6063fcf')
build() {
cd $_srcname-$pkgver
python setup.py build
}
# check() {
# cd $_srcname-$pkgver
# pytest
# }
package() {
cd $_srcname-$pkgver
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
# License
install -d "$pkgdir/usr/share/licenses/$pkgname"
install -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
# vim:set ts=2 sw=2 et: