mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-12-16 14:58:53 +00:00
b29791a9bf
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
34 lines
1.3 KiB
Makefile
34 lines
1.3 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 aarch64"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://libreelec.tv"
|
|
PKG_URL=""
|
|
PKG_DEPENDS_TARGET="toolchain lg-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 lg-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/
|
|
cp -PR $(get_build_dir lg-gpio)/liblgpio.so* ${ADDON_BUILD}/${PKG_ADDON_ID}/lib/
|
|
cp -PR $(get_build_dir lg-gpio)/PY_LGPIO/build/lib.linux*/* ${ADDON_BUILD}/${PKG_ADDON_ID}/lib/
|
|
patchelf --add-rpath '${ORIGIN}' ${ADDON_BUILD}/${PKG_ADDON_ID}/lib/_lgpio*.so
|
|
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
|
|
}
|