summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a46191d56803a63047b7c579d415425fd0fcb583 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Maintainer: tblFlip <root@tblflip.de>

pkgname=tagstudio
pkgver=alpha9.5.2
pkgrel=1
pkgdesc="A User-Focused Photo & File Management System "
_pkgver=${pkgver#alpha}

arch=("x86_64")
url="https://github.com/TagStudioDev/TagStudio"
license=("GPL-3.0-only")

depends=(
	"python>=3.13"
	"python-humanfriendly>=10.0"
	"python-opencv>=4.10.0.84"
	"python-pillow>=10.3"
	"python-pillow-jpegxl-plugin>=1.3.0"
	"pyside6>=6.8.0.1"
	"python-typing_extensions>=3.10"
	"python-ujson>=5.8"
	"python-numpy>=2.1.9"
	"python-chardet>=5.2"
	"python-rawpy>=0.22"
	"python-pillow-heif>=0.16"
	"python-send2trash>=1.8.0"
	"python-ffmpeg-python>=0.2.0"
	"python-mutagen>=1.47.0"
	"python-vtf2img>=0.1.0"
	"python-pydub>=0.25.1"
	"python-sqlalchemy>=2.0.34"
	"python-structlog>=24.4.0"
	"python-toml>=0.10.2"
	"python-pydantic>=2.9.2"
	"qt6-tools"
	"qt6-multimedia"
	"qt6-svg"
	"dbus"
	"ffmpeg"
)

optdepends=(
	"libva"
	"libvdpau"	
	"libxrandr"
	"pipewire"
	"qt-wayland"
)

makedepends=(
	"python-build"
	"python-installer"
	"python-wheel"
	"python-setuptools-scm"
	"python-hatchling"
)

source=(
	"$pkgname-$_pkgver.tar.gz::$url/archive/refs/tags/v$_pkgver.tar.gz"
	"$pkgname.desktop"
	"$pkgname"
	"MANIFEST.in"
)

sha256sums=(
	"2a034db1310c9d16b209094ed4d4c23cad3ef46b5de5eb87855694d06954fe38"
	"75ef43dcb45445544daf48c002e5de8878c4e4a84408e607c817f582f7fa19d3"
	"7a611755db416558c892b083ce7c802c115f68bca86facfdb66cca29cf0ff36f"
	"ef8f9aa04aadb340d662197e74ba03c1bd0e1f14182c85653d537ee94babedeb"
)

provides=("$pkgname")
conflicts=("$pkgname")

build() {
	cd "TagStudio-$_pkgver"
	# setuptools allegedly does not support PEP-639 yet
	sed -i 's/license = "GPL-3.0-only"/license = {text = "GPL-3.0-only"}/' pyproject.toml
	# python-opencv currently does not ship cv2.typing
	sed -i 's/from cv2.typing import MatLike/class MatLike: pass/' src/tagstudio/qt/widgets/thumb_renderer.py
	python -m build --wheel --no-isolation
}

package() {
	install -Dm644 "$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
	cd "TagStudio-$_pkgver"
	install -Dm644 "src/tagstudio/resources/icon.png" "$pkgdir/usr/share/icons/hicolor/512x512/apps/$pkgname.png"
	python -m installer --destdir="$pkgdir" dist/*.whl
}