mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-25 09:36:18 +00:00
32 lines
1.2 KiB
Makefile
32 lines
1.2 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="rpi-tools"
|
|
PKG_VERSION="1.0"
|
|
PKG_REV="0"
|
|
PKG_ARCH="arm"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://libreelec.tv"
|
|
PKG_URL=""
|
|
PKG_DEPENDS_TARGET="toolchain RPi.GPIO gpiozero colorzero lan951x-led-ctl"
|
|
PKG_SECTION="virtual"
|
|
PKG_SHORTDESC="A bundle of tools and programs for use on the Raspberry Pi"
|
|
PKG_LONGDESC="This bundle currently includes RPi.GPIO, gpiozero and lan951x-led-ctl"
|
|
PKG_DISCAIMER="Raspberry Pi is a trademark of the Raspberry Pi Foundation http://www.raspberrypi.org"
|
|
|
|
PKG_IS_ADDON="yes"
|
|
PKG_ADDON_NAME="Raspberry Pi Tools"
|
|
PKG_ADDON_TYPE="xbmc.python.module"
|
|
PKG_ADDON_PROJECTS="RPi ARM"
|
|
|
|
|
|
addon() {
|
|
mkdir -p ${ADDON_BUILD}/${PKG_ADDON_ID}/lib/RPi/
|
|
cp -PR $(get_build_dir RPi.GPIO)/build/lib.linux-*/RPi/* ${ADDON_BUILD}/${PKG_ADDON_ID}/lib/RPi
|
|
cp -PR $(get_build_dir gpiozero)/gpiozero ${ADDON_BUILD}/${PKG_ADDON_ID}/lib/
|
|
cp -PR $(get_build_dir colorzero)/colorzero ${ADDON_BUILD}/${PKG_ADDON_ID}/lib/
|
|
|
|
mkdir -p ${ADDON_BUILD}/${PKG_ADDON_ID}/bin/
|
|
cp -P $(get_build_dir lan951x-led-ctl)/lan951x-led-ctl ${ADDON_BUILD}/${PKG_ADDON_ID}/bin
|
|
}
|