blob: d44b11d7f8d5b5a74f75b53833e201b2cb232894 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: Olivier Churlaud <olivier@churlaud.com>
# Contributor: American_Jesus <american.jesus.pt AT gmail DOT com>
pkgname=grub2-theme-archlinux
_pkgname=Archlinux
_reponame=grub2-themes-archlinux
pkgver=1.0
pkgrel=5
pkgdesc="Grub2 gfxmenu theme."
url="https://github.com/ochurlaud/grub2-themes-archlinux"
arch=('any')
license=('GPL3')
depends=('grub')
install=${pkgname}.install
source=("https://github.com/ochurlaud/grub2-themes-archlinux/archive/refs/tags/v${pkgver}.tar.gz")
md5sums=('aceac0d65eefc3aa7bcb6a8494eb69db')
package() {
cd "${srcdir}/${_reponame}-${pkgver}"
find ${_pkgname} -type f -exec install -D -m644 {} ${pkgdir}/boot/grub/themes/{} \;
}
|