mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 03:07:13 +08:00
29 lines
658 B
Bash
29 lines
658 B
Bash
# Contributor from arch: https://projects.archlinux.org/svntogit/packages.git/tree/kde-unstable/PKGBUILD?h=packages/breeze-grub
|
|
|
|
source ../plasma.conf
|
|
|
|
pkgname=breeze-grub
|
|
pkgver=${PVersion}
|
|
pkgrel=1
|
|
pkgdesc="Breeze theme for GRUB"
|
|
arch=(any)
|
|
url='https://projects.kde.org/breeze-grub'
|
|
license=(LGPL)
|
|
depends=(grub)
|
|
makedepends=()
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
|
|
sha256sums=( $(getSum ${pkgname})
|
|
'SKIP' )
|
|
validpgpkeys=(${Pvalidpgpkeys})
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
|
|
cd $pkgname-$pkgver
|
|
}
|
|
|
|
package() {
|
|
install -d "$pkgdir"/boot/grub/themes
|
|
cp -r $pkgname-$pkgver/breeze "$pkgdir"/boot/grub/themes
|
|
}
|