mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-02 10:41:46 -04:00
* Switch: Switch to new Bootloader. * Initial Mariko Support * ffmpeg: Fix issues caused by last libreELEC upstream merge.
15 lines
366 B
Makefile
15 lines
366 B
Makefile
PKG_NAME="switch-cpu-profile"
|
|
PKG_VERSION="1.0"
|
|
PKG_DEPENDS_TARGET="Python3"
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/bin
|
|
#cp -v ${PKG_DIR}/scripts/cpu-profile ${INSTALL}/usr/bin
|
|
touch ${INSTALL}/usr/bin/cpu-profile
|
|
chmod +x ${INSTALL}/usr/bin/cpu-profile
|
|
}
|
|
|
|
post_install() {
|
|
enable_service switch-cpu-profile.service
|
|
}
|