blob: 54e3a97826e97794335785278dc499385aab56b1 (
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
|
# Maintainer: User8395 <therealuser8395@proton.me>
pkgname=qqc2-desktop-style-git
_pkgname=qqc2-desktop-style
pkgver=6.28.0.r6.g58114f9
pkgrel=1
pkgdesc='A style for Qt Quick Controls 2 to make it follow your desktop theme'
arch=(any)
url='https://invent.kde.org/frameworks/qqc2-desktop-style'
license=(LGPL)
groups=(kf6-git)
depends=(kirigami-git kiconthemes-git)
makedepends=(extra-cmake-modules-git)
conflicts=(qqc2-desktop-style)
provides=(qqc2-desktop-style)
source=("git+https://invent.kde.org/frameworks/qqc2-desktop-style.git")
sha256sums=('SKIP')
pkgver() {
cd "qqc2-desktop-style"
git describe --long --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cmake -B build -S $_pkgname \
-DBUILD_TESTING=OFF
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
|