blob: 700fb86bcf7bfa91345a558ac36672d42bfd306a (
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
|
# Maintainer: envolution
# Contributor: l-koehler <lorenz.koehler@posteo.de>
# Contributor: katt <magunasu.b97@gmail.com>
# Contributor: Antonio Rojas <arojas@archlinux,org>
# Contributor: Felix Yan <felixonmars@archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
# shellcheck shell=bash disable=SC2034,SC2154
pkgname=dolphin-git
_pkgname=dolphin
pkgver=24.12.0+r8309+gf531cdffc
pkgrel=1
pkgdesc='KDE File Manager (git)'
arch=(x86_64)
url='https://apps.kde.org/dolphin/'
license=(LGPL-2.0-or-later)
provides=(dolphin=$pkgver)
conflicts=(dolphin)
depends=(baloo
baloo-widgets
gcc-libs
glibc
kbookmarks
kcmutils
kcodecs
kcolorscheme
kcompletion
kconfig
kconfigwidgets
kcoreaddons
kcrash
kdbusaddons
kfilemetadata
kguiaddons
ki18n
kiconthemes
kio
kio-extras
kjobwidgets
knewstuff
knotifications
kparts
kservice
ktextwidgets
kuserfeedback
kwidgetsaddons
kwindowsystem
kxmlgui
phonon-qt6
qt6-base
solid)
makedepends=(extra-cmake-modules
kdoctools
git)
optdepends=('ffmpegthumbs: video thumbnails'
'kde-cli-tools: for editing file type options'
'kdegraphics-thumbnailers: PDF and PS thumbnails'
'kdenetwork-filesharing: samba usershare properties menu'
'kio-admin: for managing files as administrator'
'konsole: terminal panel'
'purpose: share context menu')
groups=(kde-applications
kde-system)
#source=(git+https://invent.kde.org/system/dolphin.git)
source=(git+https://github.com/KDE/dolphin.git)
sha256sums=('SKIP')
build() {
cmake -B build -S $_pkgname \
-DBUILD_TESTING=OFF
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
# vim:set ts=2 sw=2 et:
|