core/breeze-grub/PKGBUILD
AlmAck 0003c19031 fix validpgpkeys array propagation
use [@] to get the full array entries, without that only the first element was retrieved
2017-08-10 11:46:06 +02:00

29 lines
661 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
}