summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d02be998b76cd7b625c5109b4bc50dc10543267c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

# Maintainer: Victor Tran <vicr12345 at gmail dot com>
pkgname=contemporary-widgets
pkgver=2.0
pkgrel=0
pkgdesc="Contemporary Widget Theme"
arch=("x86_64" "aarch64")
url="https://github.com/theCheeseboard/contemporary-theme"
license=('GPL3')
depends=('libcontemporary')
makedepends=('git' 'qt6-tools' 'cmake' 'clang')
source=("$pkgname-$pkgver"::"https://github.com/theCheeseboard/contemporary-theme/archive/v$pkgver.tar.gz")
sha256sums=('4be56bfe3279503cccc6bba782225e0924c884899e316ef52c1e1e057b0639ec')

build() {
	cmake -B build -S "contemporary-theme-$pkgver" \
		-DCMAKE_INSTALL_PREFIX=/usr
	cmake --build build
}

package() {
	DESTDIR="$pkgdir" cmake --install "build"
}