mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
27 lines
626 B
Makefile
27 lines
626 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="slice-addon"
|
|
PKG_VERSION="1.0"
|
|
PKG_REV="101"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE=""
|
|
PKG_URL=""
|
|
PKG_DEPENDS_TARGET=""
|
|
PKG_SHORTDESC="Controls the LED lights on the Slice box using Kodi actions"
|
|
PKG_LONGDESC="Controls the LED lights on the Slice box using Kodi actions"
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
make_target() {
|
|
(
|
|
cd $ROOT
|
|
scripts/create_addon slice
|
|
)
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p $INSTALL/usr/share/kodi/addons
|
|
cp -R $BUILD/$ADDONS/slice/service.slice $INSTALL/usr/share/kodi/addons
|
|
}
|