blob: 1117cbbc9cf2c7419499435fc711efe4cb16dd02 (
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
|
# Maintainer: Melanie Scheirer <mel@nie.rs>
# Contributor: Antonio Rojas <arojas@archlinux.org>
pkgname=purpose-git
_name=${pkgname/-git}
pkgver=r1238.ef7dace8
pkgrel=1
pkgdesc="Framework for providing abstractions to get the developer's purposes fulfilled"
arch=(x86_64)
url='https://projects.kde.org/projects/playground/libs/purpose'
license=(LGPL-2.0-only LGPL-3.0-only)
depends=(accounts-qml-module
gcc-libs
glibc
kaccounts-integration
kcmutils
kconfig
kcoreaddons
ki18n
kio
kirigami
knotifications
kservice
libaccounts-qt
qt6-base
qt6-declarative
)
makedepends=(extra-cmake-modules git python intltool kdeclarative qt6-multimedia prison)
optdepends=('bluez-qt: sharing via Bluetooth'
'kdeclarative: Nextcloud and YouTube plugins'
'kdeconnect: sharing to smartphone via KDE Connect'
'prison: QR code plugin'
'telegram-desktop: sharing via Telegram')
provides=(purpose)
conflicts=(purpose)
source=("git+https://github.com/KDE/$_name.git")
sha256sums=('SKIP')
pkgver() {
cd $_name
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cmake -B build -S $_name -DCMAKE_INSTALL_LIBEXECDIR=lib -DBUILD_TESTING=OFF
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
|