blob: 7c83f74229d8143a97aafea44e4a4c7de2128ace (
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
50
51
52
53
54
55
|
# Maintainer:
# Contributor: Mark Wagie <mark dot wagie at proton dot me>
# Contributor: Hyacinthe Cartiaux <hyacinthe.cartiaux@free.fr>
# Contributor: Nikola Milinković <nikmil@gmail.com>
# Contributor: Quentin Stievenart <quentin.stievenart@gmail.com>
pkgname=subliminal-git
pkgver=2.2.1.r44.gda2817d
pkgrel=1
pkgdesc="Python library and CLI tool for searching and downloading subtitles."
arch=('any')
url="https://github.com/Diaoul/subliminal"
license=('MIT')
depends=('python-guessit>=3.0.0'
'python-babelfish>=0.6.1'
'python-enzyme>=0.5.0'
'python-platformdirs>=3'
'python-beautifulsoup4>=4.4.0'
'python-pysubs2>=1.7'
'python-requests>=2.0'
'python-click>=8.0'
'python-click-option-group>=0.5.0'
'python-dogpile.cache>=1.0'
'python-stevedore>=3.0'
'python-chardet>=5.0'
'python-srt>=3.5'
'python-tomli>=2'
'python-rarfile>=2.7'
)
makedepends=('git' 'python-build' 'python-installer'
'python-sphinxcontrib-programoutput' 'python-sphinx_rtd_theme' 'python-wheel'
'python-sphinx-autodoc-typehints' 'towncrier' 'python-sphinx'
'python-hatchling' 'python-hatch-vcs')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/Diaoul/subliminal.git#branch=main')
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname%-git}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/${pkgname%-git}"
python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/${pkgname%-git}"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/${pkgname%-git}"
}
|