mirror of
https://github.com/Snigdha-OS/snigdhaos-pkgbuilds.git
synced 2025-09-23 13:05:00 +02:00

Some checks are pending
Check Conventional Commit / check-commit-message (push) Waiting to run
22 lines
562 B
Bash
22 lines
562 B
Bash
# Maintainer: Eshan Roy <eshan@snigdhaos.org>
|
|
# Maintainer: CELESTIFYX Team <celestifyx@gmail.com>
|
|
|
|
pkgname="snigdhaos-grub-theme"
|
|
branch=master
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="Grub Theme For Snigdha OS"
|
|
arch=("any")
|
|
license=("GPL-3.0-or-later")
|
|
makedepends=("git")
|
|
depends=("grub")
|
|
install="${pkgname}.install"
|
|
|
|
source=("grub-theme::git+https://github.com/snigdha-os/${pkgname}.git")
|
|
sha512sums=("SKIP")
|
|
|
|
package() {
|
|
cd "grub-theme/snigdhaos-live" || exit
|
|
find . -type f -exec install -D -m644 {} "${pkgdir}"/usr/share/grub/themes/snigdhaos-grub-theme/{} \;
|
|
}
|