liri-themes: upgrade to 0.9.0+

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
This commit is contained in:
Andreas Müller
2018-12-13 00:13:00 +01:00
parent c614997d2b
commit 70504948c4
2 changed files with 40 additions and 6 deletions

View File

@@ -0,0 +1,35 @@
From 69fb1f079bcc92c49656930da7dbcd45be1154ad Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
Date: Thu, 13 Dec 2018 00:00:34 +0100
Subject: [PATCH] Set correct path for grub themes
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
In it's infinite wisdom cmake installed themes to /usr/boot/grub
Upstream-Status: Submitted [1]
[1] https://github.com/lirios/themes/pull/11
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 799460c..0b15301 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -16,7 +16,7 @@ endif()
include(LiriSetup)
## Grub directory
-set(INSTALL_GRUBDIR "boot/grub" CACHE PATH "Grub [boot/grub]")
+set(INSTALL_GRUBDIR "/boot/grub" CACHE PATH "Grub [/boot/grub]")
## Add subdirectories:
add_subdirectory(colorschemes)
--
2.14.5

View File

@@ -8,10 +8,11 @@ inherit liri
PV = "0.9.0+git${SRCPV}"
SRCREV = "884d5faa15f53627c3ca2e3f2e5872e7b157ef25"
SRC_URI += "file://0001-Set-correct-path-for-grub-themes.patch"
SRCREV = "37e0c45704cdda48dedd31c10e20c632701e76c3"
S = "${WORKDIR}/git"
PACKAGES = " \
PACKAGES += " \
${PN}-grub \
${PN}-plymouth \
${PN}-sddm \
@@ -21,15 +22,13 @@ RDEPENDS_${PN}-plymouth += " \
plymouth \
plymouth-set-default-theme \
"
RDEPENDS_${PN}-sddm += " \
liri-shell \
"
FILES_${PN} += "${datadir}/color-schemes"
FILES_${PN}-grub += "/boot/grub/themes"
FILES_${PN}-plymouth += "${datadir}/plymouth/themes"
FILES_${PN}-sddm += "${datadir}/sddm/themes"
pkg_postinst_${PN}() {
pkg_postinst_${PN}-plymouth() {
#!/bin/sh
plymouth-set-default-theme -R lirios
}