blob: afae165bbef98b85cee9a4c588a7aaf255079952 (
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
|
# Maintainer: DeltaCopy <7x0bb03yq@mozmail.com>
# Description: Builds Vinyl theme from https://github.com/ekaaty/vinyl-theme
# basic info
pkgname="vinyl"
_gitname="vinyl-theme"
pkgver=6.5.3
pkgrel=1
pkgdesc="Vinyl Theme for KDE Plasma 6"
url="https://github.com/ekaaty/vinyl-theme"
arch=('x86_64' 'aarch64')
license=("GPL-2.0-or-later")
build_dir="build_kf6"
makedepends=(
'cmake'
'extra-cmake-modules'
'python'
'python-cairosvg'
'python-lxml'
'xorg-xcursorgen'
)
options=(!emptydirs)
source=(
"${url}/archive/refs/tags/v6.5.3.tar.gz"
)
sha256sums=('3610db21accb4f51bce125ad29897a041b9c66292161e23cd9521dd8916b9a18')
depends=(
'kdecoration'
'qt6-declarative'
'kcoreaddons'
'kcmutils'
'kcolorscheme'
'kconfig'
'kguiaddons'
'kiconthemes'
'kwindowsystem'
'kdoctools'
'kpackage'
'frameworkintegration'
'libplasma'
)
depends=("${depends[@]}")
conflicts=(
'vinyl-git'
'vinyl-theme'
)
build() (
local cmake_options=(
-B $build_dir
-S "$_gitname-${pkgver}"
-DBUILD_TESTING=OFF
-Wno-dev
)
cmake "${cmake_options[@]}"
cmake --build $build_dir
)
package() (
DESTDIR="$pkgdir" cmake --install $build_dir --prefix /usr
rm -rf "$pkgdir/usr/lib/cmake"
)
|