blob: ef6e3e0ee643e4286672227d82d82aa949770390 (
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
56
|
# Maintainer: Goldy <goldy@devgoldy.xyz>
# Maintainer: Ananas <ananas@ananas.moe>
pkgname=mov-cli
pkgver="4.4.12"
pkgrel=1
pkgdesc="Watch everything from your terminal."
arch=("x86_64" "i686")
url="https://github.com/mov-cli/mov-cli"
license=("MIT")
makedepends=(
"python-build" "python-wheel" "python-installer"
)
depends=(
"python"
"python-beautifulsoup4"
"python-httpx"
"python-toml"
"python-typer"
"python-inquirer"
"python-unidecode"
"python-deprecation"
"python-decouple"
"python-thefuzz"
"python-devgoldyutils"
"python-mov-cli-test"
"nano"
"mpv"
"fzf"
)
optdepends=(
"python-lxml: For a faster beautifulsoup parser."
"vlc: Optional media player."
"ffmpeg: For downloading media"
"yt-dlp"
)
checkdepends=()
provides=("mov-cli")
conflicts=("mov-cli-git")
md5sums=("SKIP")
source=(
"https://github.com/mov-cli/mov-cli/archive/refs/tags/$pkgver.zip"
)
build() {
cd $srcdir/$pkgname-$pkgver
python -m build --wheel --no-isolation
}
package() {
cd $pkgname-$pkgver
python -m installer --destdir="$pkgdir" dist/*.whl
}
|