mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
includes: - https://github.com/xbmc/inputstream.adaptive pull 1844 - https://github.com/xbmc/inputstream.adaptive issues 1846
29 lines
914 B
Makefile
29 lines
914 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="inputstream.adaptive"
|
|
PKG_VERSION="dc604fff57e2dd7b8b79253da72d55040a7ba646"
|
|
PKG_SHA256="7303a15d1407c185b0bf7ec3ca699fe285c2e8f252e6a708c720f284772798cb"
|
|
PKG_REV="2"
|
|
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}
|
|
}
|