blob: a5109eea3f1aefd821d575b867c9bf7a515cee1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Zhang.j.k <zhangjk67 at gmail dian com>
pkgname=cyberpunk-grub-theme-git
_theme=Cyberpunk
pkgver=0.5
pkgrel=1
pkgdesc="A GRUB Bootloader Theme Inspired by Cyberpunk 2077 Video Game."
url='https://github.com/anoopmsivadas/Cyberpunk-GRUB-Theme'
arch=('any')
license=('custom:cc0')
depends=('grub')
makedepends=('git')
install=${pkgname}.install
source=("${pkgname}"::"git+https://github.com/anoopmsivadas/Cyberpunk-GRUB-Theme")
md5sums=('SKIP')
package() {
cd "${srcdir}"
install -dm 755 $pkgdir/usr/share/grub/themes/Cyberpunk
cp -rf --no-preserve=ownership cyberpunk-grub-theme-git/Cyberpunk $pkgdir/usr/share/grub/themes/
cd "$pkgname"
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}
|