summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c980f08663aef091ca17e2dd2f8bf138be43af24 (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
# Maintainer: Austin Horstman <khaneliman12@gmail.com>

pkgname=sddm-catppuccin-git
pkgver=r33.7b7a86e
pkgrel=1
pkgdesc="Theme for SDDM with catppuccin backgrounds and styling."
arch=('any')
url="https://github.com/khaneliman/sddm-catppuccin"
license=('GPL3')
depends=('sddm' 'qt5-graphicaleffects' 'qt5-svg' 'qt5-quickcontrols2')
makedepends=('git')
backup=('usr/share/sddm/themes/catppuccin/theme.conf')
source=('git+https://github.com/khaneliman/sddm-catppuccin')
sha256sums=('SKIP')

pkgver() {
	cd "${srcdir}/sddm-catppuccin"
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
	cd "${srcdir}/sddm-catppuccin"
	mkdir -p "${pkgdir}/usr/share/sddm/themes/"
	cp -r catppuccin/ "${pkgdir}/usr/share/sddm/themes/"
}