blob: f7100bf1ac4d7926e1148b42ef349c855f2fd812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: AlphaJack <alphajack at tuta dot io>
pkgname="toc"
_pkgname="tableofcontents"
pkgver=2.7.3
pkgrel=1
pkgdesc="Generate a table of contents from the comments of a file"
url="https://github.com/AlphaJack/toc"
license=("GPL3")
arch=("any")
depends=("python" "python-importlib-metadata")
makedepends=("python-build" "python-installer" "python-wheel" "python-setuptools")
source=("$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz")
b2sums=('00b4c0cd433871e5d41045c49e6b9c2b6890864185d911f9379d244f0ebef27e157d87f8b68b2974f689950af410986580300f398429794d5fdfe13fcbd17e22')
build(){
cd "$_pkgname-$pkgver"
python -m build --wheel --no-isolation
}
package(){
cd "$_pkgname-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
install -D -m 644 "README.md" -t "$pkgdir/usr/share/doc/toc"
}
|