mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:04:37 +08:00
35 lines
651 B
Bash
35 lines
651 B
Bash
source ../plasma.conf
|
|
|
|
pkgname=breeze-plymouth
|
|
pkgver=${PVersion}
|
|
pkgrel=1
|
|
pkgdesc="Breeze theme for Plymouth"
|
|
arch=('x86_64')
|
|
url='https://projects.kde.org/projects/kdereview/breeze-plymouth'
|
|
license=('LGPL')
|
|
depends=('plymouth')
|
|
makedepends=('extra-cmake-modules')
|
|
groups=('plasma')
|
|
options=("debug")
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
|
|
sha256sums=( $(getSum ${pkgname})
|
|
'SKIP' )
|
|
validpgpkeys=(${Pvalidpgpkeys[@]})
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|