mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:57:17 +08:00
40 lines
865 B
Bash
40 lines
865 B
Bash
source ../plasma.conf
|
|
|
|
pkgname=breeze-plymouth
|
|
pkgver=${PVersion}
|
|
pkgrel=2
|
|
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}-${PSubVersion}.tar.xz"
|
|
"fix-path.patch"
|
|
"fix-link.patch")
|
|
sha256sums=( $(getSum ${pkgname})
|
|
'e6a41cac24a86f7e2a09970bfaac291b4c2ffa94927abecb4f076da29f4ce5fb'
|
|
'218bada0082e1b5eec4fdad3d0ddbd843d9f452a8b0cc5fd021b1e47e624c8fc')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
patch -p1 -i ../fix-path.patch
|
|
patch -p1 -i ../fix-link.patch
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|