mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-13 00:09:01 +08:00
31 lines
998 B
Bash
31 lines
998 B
Bash
# Contributor from arch: https://projects.archlinux.org/svntogit/packages.git/tree/kde-unstable/PKGBUILD?h=packages/breeze-grub
|
|
|
|
|
|
pkgname=breeze-grub
|
|
pkgver=5.13.1
|
|
pkgrel=1
|
|
pkgdesc="Breeze theme for GRUB"
|
|
arch=(any)
|
|
url='https://projects.kde.org/breeze-grub'
|
|
license=(LGPL)
|
|
depends=(grub)
|
|
makedepends=()
|
|
source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
|
|
sha256sums=('949763cb63ded4bfec61d90a8e815ec890b44444876c733e258f31181fec3f41'
|
|
'SKIP' )
|
|
validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E' # Jonathan Riddell
|
|
'0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D' # Bhushan Shah <bshah@kde.org>
|
|
'D07BD8662C56CB291B316EB2F5675605C74E02CF' # David Edmundson
|
|
'1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin <notmart@gmail.com>
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
|
|
cd $pkgname-$pkgver
|
|
}
|
|
|
|
package() {
|
|
install -d "$pkgdir"/boot/grub/themes
|
|
cp -r $pkgname-$pkgver/breeze "$pkgdir"/boot/grub/themes
|
|
}
|