blob: 74be3b1aca4de9e0e21e124b803c87e4ff8aee19 (
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
|
# Maintainer: Alexandre Bouvier <contact@amb.tf>
# Contributor: Marcus Behrendt <marcus dot behrendt dot eightysix(in numbers) at bigbrothergoogle dot com
_pkgname=arc-kde
pkgname=$_pkgname-git
pkgver=20220908.r3.g5573d0e
pkgrel=1
epoch=2
pkgdesc="Arc theme for KDE Plasma 5"
arch=('any')
url="https://github.com/PapirusDevelopmentTeam/arc-kde"
license=('GPL3')
makedepends=('git')
optdepends=(
'arc-gtk-theme: for a consistent look in GTK applications'
'konsole: for konsole theme'
'konversation: for konversation theme'
'kvantum: for kvantum theme (recommended)'
'papirus-icon-theme: for a more consistent and beautiful experience (recommended)'
'plasma-desktop: for plasma desktop theme'
'yakuake: for yakuake theme'
)
provides=("$_pkgname=$pkgver" "kvantum-theme-arc=$pkgver")
conflicts=("$_pkgname" 'kvantum-theme-arc')
source=("$_pkgname::git+$url.git")
b2sums=('SKIP')
pkgver() {
cd $_pkgname
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
rm -r $_pkgname/konversation/themes/papirus{,-dark}/src
}
package() {
# shellcheck disable=SC2154
make -C $_pkgname DESTDIR="$pkgdir" install
}
|