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,24 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
_srcname=sphinxcontrib-applehelp
pkgname=python-sphinxcontrib-applehelp
pkgver=1.0.2
pkgrel=2
pkgdesc="Sphinx extension which outputs help books"
arch=('any')
url='https://github.com/sphinx-doc/sphinxcontrib-applehelp'
license=('Simplified-BSD')
makedepends=('python-setuptools')
source=("$pkgname-$pkgver.tar.gz::https://github.com/sphinx-doc/sphinxcontrib-applehelp/archive/$pkgver.tar.gz")
sha512sums=('9cb746ab27909b55e211a2a8f783150218441d291dd316b0012262e5fd8dcb27d8edeacda62aafa64edea0c17b98ea46735aaedf236f612ff1582580274b8c14')
build() {
cd "$_srcname-$pkgver"
python setup.py build
}
package() {
cd "$_srcname-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
}