blob: bc5e1071f3032dcdbfbce5f30432aba9b89524b7 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# -*- sh -*-
# Maintainer: Klaus Alexander Seistrup <$(echo 0x1fd+d59decfa=40 | tr 0-9+a-f=x ka-i@p-u.l)>
pkgname='python-textcase-git'
_pkgname="${pkgname/-git/}"
_srcname="${_pkgname/python-/}"
_srcdir="${_srcname}"
pkgver=0.2.1.r17.g35372b0
pkgrel=2
pkgdesc='Feature-rich Python text case conversion library (built from latest git commit)'
arch=('any')
url="https://github.com/zobweyt/$_srcname"
license=('GPL-3.0-or-later') # SPDX-License-Identifier: GPL-3.0-or-later
makedepends=(
'git'
'python-build'
'python-installer'
'python-wheel'
)
depends=('python')
source=("git+$url.git")
provides=("$_pkgname")
conflicts=("${provides[@]}")
sha256sums=('SKIP')
pkgver() {
cd "$_srcdir"
git describe --long --tags \
| sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$_srcdir"
python -m build --wheel --no-isolation
}
package() {
cd "$_srcdir"
python -m installer --destdir="$pkgdir" dist/*.whl
install -vDm0644 -t "$pkgdir/usr/share/doc/$pkgname" \
{CHANGELOG,CODE_OF_CONDUCT,CONTRIBUTING,README,SECURITY}.md
}
# eof
|