distribution/packages/graphics/plymouth-lite/package.mk

45 lines
1.2 KiB
Makefile
Raw Normal View History

2022-02-05 14:23:32 +00:00
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
PKG_NAME="plymouth-lite"
2022-05-27 22:33:28 +00:00
PKG_VERSION="92b3d5b"
2022-02-05 14:23:32 +00:00
PKG_LICENSE="GPL"
2022-02-25 02:42:48 +00:00
PKG_SITE="https://github.com/JustEnoughLinuxOS/plymouth-lite"
PKG_URL="${PKG_SITE}.git"
2022-02-05 14:23:32 +00:00
PKG_DEPENDS_INIT="toolchain ccache:init libpng"
PKG_DEPENDS_TARGET="toolchain libpng"
PKG_LONGDESC="Boot splash screen based on Fedora's Plymouth code"
if [ "$UVESAFB_SUPPORT" = yes ]; then
PKG_DEPENDS_INIT="$PKG_DEPENDS_INIT v86d:init"
fi
pre_configure_init() {
# plymouth-lite dont support to build in subdirs
2022-05-27 22:33:28 +00:00
cd ${PKG_BUILD}
rm -rf .${TARGET_NAME}-init
2022-02-05 14:23:32 +00:00
}
makeinstall_init() {
2022-05-27 22:33:28 +00:00
mkdir -p ${INSTALL}/usr/bin
cp ply-image ${INSTALL}/usr/bin
2022-02-05 14:23:32 +00:00
2022-05-27 22:33:28 +00:00
mkdir -p ${INSTALL}/splash
find_file_path splash/splash.conf && cp ${FOUND_PATH} ${INSTALL}/splash
find_file_path "splash/splash-*.png" && cp ${FOUND_PATH} ${INSTALL}/splash
2022-02-05 14:23:32 +00:00
}
pre_configure_target() {
# plymouth-lite dont support to build in subdirs
2022-05-27 22:33:28 +00:00
cd ${PKG_BUILD}
rm -rf .${TARGET_NAME}-init
2022-02-05 14:23:32 +00:00
}
post_makeinstall_target() {
mkdir -p ${INSTALL}/usr/config/splash
find_file_path "splash/splash-*.png" && cp ${FOUND_PATH} ${INSTALL}/usr/config/splash
}