diff options
author | Christian Finnberg | 2022-02-09 21:44:50 +0200 |
---|---|---|
committer | Christian Finnberg | 2022-02-09 21:44:50 +0200 |
commit | 6ad73da505a8ab5835479f805928bc452008dbc3 (patch) | |
tree | ef1effc6df9ae7989ff2584f1cc1888545e7cd7a | |
parent | 56ee98d64352797ab659a2992953b4beda7ef314 (diff) | |
download | aur-6ad73da505a8ab5835479f805928bc452008dbc3.tar.gz |
Fixes instructions and source URL
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | PKGBUILD | 8 | ||||
-rw-r--r-- | sekiro-grub-theme-git.install | 4 |
3 files changed, 11 insertions, 13 deletions
@@ -1,16 +1,14 @@ pkgbase = sekiro-grub-theme-git - pkgdesc = Sekiro - GRUB2 theme - GIT version - pkgver = r1.a704748 + pkgdesc = A GRUB2 theme with japanese style + pkgver = r1.39c5f4d pkgrel = 1 url = https://github.com/semimqmo/sekiro_grub_theme install = sekiro-grub-theme-git.install arch = any license = MIT makedepends = git - provides = sekiro-grub-theme=r1.a704748 - conflicts = sekiro-grub-theme - source = git+https://github.com/semimqmo/sekiro_grub_theme.git - sha512sums = SKIP + depends = grub + source = sekiro-grub-theme-git::git+https://github.com/semimqmo/sekiro_grub_theme.git + md5sums = SKIP pkgname = sekiro-grub-theme-git - @@ -2,16 +2,16 @@ pkgname=sekiro-grub-theme-git _themename=sekiro -pkgver=r1.a704748 +pkgver=r1.39c5f4d pkgrel=1 -pkgdesc="A GRUB Bootloader Theme with japanese style" +pkgdesc="A GRUB2 theme with japanese style" url='https://github.com/semimqmo/sekiro_grub_theme' arch=('any') license=('MIT') depends=('grub') makedepends=('git') install="${pkgname}.install" -source=("${pkgname}"::"git+https://github.com/semimqmo/sekiro_grub_theme") +source=("${pkgname}"::"git+https://github.com/semimqmo/sekiro_grub_theme.git") md5sums=('SKIP') package() { @@ -20,4 +20,4 @@ package() { cp -rf --no-preserve=ownership ${pkgname}/Sekiro/* $pkgdir/usr/share/grub/themes/${_themename}/ cd "$pkgname" install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -}
\ No newline at end of file +} diff --git a/sekiro-grub-theme-git.install b/sekiro-grub-theme-git.install index 39a88455cfc3..f70d9b971e33 100644 --- a/sekiro-grub-theme-git.install +++ b/sekiro-grub-theme-git.install @@ -1,7 +1,7 @@ post_install() { echo '==> To select the Sekiro theme you must:' echo '==> 1. Open the file "/etc/default/grub" in a text editor' - echo '==> 2. Update the variable GRUB_THEME="/boot/grub/themes/sekiro/theme.txt"' + echo '==> 2. Update the variable GRUB_THEME="/usr/share/grub/themes/sekiro/theme.txt"' echo '==> 3. Update the grub config by running "sudo grub-mkconfig -o /boot/grub/grub.cfg"' echo ' or run "sudo update-grub" if you are in Manjaro' } @@ -12,4 +12,4 @@ post_remove() { echo '==> Make sure you selected a different theme in "/etc/default/grub"' echo ' and updated your grub config with "sudo grub-mkconfig -o /boot/grub/grub.cfg"' echo ' or "sudo update-grub" if you are in Manjaro' -}
\ No newline at end of file +} |