blob: 7bb5eab36d0347f2a9ea9bc6797deaf7c21ccc2f (
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
|
# Maintainer: éclairevoyant
# Contributor: Anthony Wang <ta180m at pm dot me>
# Contributor: Chris Lane <aur at chrislane dot com>
_pkgname=digikam
pkgname="$_pkgname-git"
pkgver=8.1.0.r673.41241c0e82
pkgrel=1
epoch=1
pkgdesc='An advanced digital photo management application'
arch=('i686' 'x86_64')
license=('GPL')
url='https://www.digikam.org/'
depends=(
akonadi-contacts
exiv2
glu
imagemagick
jasper
kcalendarcore5
kfilemetadata5
kio5
knotifyconfig5
lensfun
libass
libgphoto2
libksane
marble-common
opencv
perl-image-exiftool
qt5-networkauth
qt5-webengine
qt5-xmlpatterns
threadweaver5
)
makedepends=(
boost
doxygen
eigen
extra-cmake-modules
git
kdoctools5
)
optdepends=('darktable: RAW import'
'hugin: panorama tool'
'perl: for digitaglinktree'
'qt5-imageformats: TIFF, WEBP support'
'rawtherapee: RAW import')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("git+https://invent.kde.org/graphics/$_pkgname.git")
sha256sums=('SKIP')
pkgver() {
git -C $_pkgname describe --long --tags | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g'
}
build() {
cmake -B build -S $_pkgname \
-DBUILD_TESTING=OFF \
-DENABLE_KFILEMETADATASUPPORT=ON \
-DENABLE_MEDIAPLAYER=ON \
-DENABLE_AKONADICONTACTSUPPORT=ON \
-DENABLE_MYSQLSUPPORT=ON \
-DENABLE_APPSTYLES=ON \
-DENABLE_QWEBENGINE=ON
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
|