mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
- inputstream.adaptive: update 20.3.9-Nexus to 20.3.11-Nexus - peripheral.joystick: update 20.1.9-Nexus to 20.1.10-Nexus - pvr.zattoo: update 20.3.11-Nexus to 20.3.13-Nexus
29 lines
887 B
Makefile
29 lines
887 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="inputstream.adaptive"
|
|
PKG_VERSION="20.3.11-Nexus"
|
|
PKG_SHA256="ed266d2a51efcd0952cfacc8549350282dce07f7c0e885eeb41d662f123e12a6"
|
|
PKG_REV="1"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/xbmc/inputstream.adaptive"
|
|
PKG_URL="https://github.com/xbmc/inputstream.adaptive/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain kodi-platform bento4 expat"
|
|
PKG_SECTION=""
|
|
PKG_SHORTDESC="inputstream.adaptive"
|
|
PKG_LONGDESC="inputstream.adaptive"
|
|
|
|
PKG_IS_ADDON="yes"
|
|
|
|
if [ "${TARGET_ARCH}" = "x86_64" ] || [ "${TARGET_ARCH}" = "arm" ]; then
|
|
PKG_DEPENDS_TARGET+=" nss"
|
|
fi
|
|
|
|
addon() {
|
|
install_binary_addon ${PKG_ADDON_ID}
|
|
|
|
mkdir -p ${ADDON_BUILD}/${PKG_ADDON_ID}
|
|
cp -P ${PKG_BUILD}/.${TARGET_NAME}/wvdecrypter/libssd_wv.so ${ADDON_BUILD}/${PKG_ADDON_ID}
|
|
}
|