mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-08-02 23:47:49 +00:00
vdr-addon: add epgsearch plugin
This commit is contained in:
parent
d812be028a
commit
94dff82c91
@ -37,6 +37,7 @@ mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/config
|
|||||||
cp -PR $BUILD/vdr-live-*/live/* $ADDON_BUILD/$PKG_ADDON_ID/config/plugins/live
|
cp -PR $BUILD/vdr-live-*/live/* $ADDON_BUILD/$PKG_ADDON_ID/config/plugins/live
|
||||||
cp $BUILD/rotorng-[0-9]*/examples/rotorng.conf $ADDON_BUILD/$PKG_ADDON_ID/config
|
cp $BUILD/rotorng-[0-9]*/examples/rotorng.conf $ADDON_BUILD/$PKG_ADDON_ID/config
|
||||||
cp $PKG_DIR/config.plugins/remote.conf $ADDON_BUILD/$PKG_ADDON_ID/config
|
cp $PKG_DIR/config.plugins/remote.conf $ADDON_BUILD/$PKG_ADDON_ID/config
|
||||||
|
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/config/plugins/epgsearch
|
||||||
|
|
||||||
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/plugin
|
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/plugin
|
||||||
cp -PR $BUILD/vdr-plugin-xvdr-*/libvdr*.so.* $ADDON_BUILD/$PKG_ADDON_ID/plugin
|
cp -PR $BUILD/vdr-plugin-xvdr-*/libvdr*.so.* $ADDON_BUILD/$PKG_ADDON_ID/plugin
|
||||||
@ -51,6 +52,7 @@ mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/plugin
|
|||||||
cp -PR $BUILD/vdr-live-*/libvdr*.so.* $ADDON_BUILD/$PKG_ADDON_ID/plugin
|
cp -PR $BUILD/vdr-live-*/libvdr*.so.* $ADDON_BUILD/$PKG_ADDON_ID/plugin
|
||||||
cp -PR $BUILD/rotorng-*/libvdr*.so.* $ADDON_BUILD/$PKG_ADDON_ID/plugin
|
cp -PR $BUILD/rotorng-*/libvdr*.so.* $ADDON_BUILD/$PKG_ADDON_ID/plugin
|
||||||
cp -PR $BUILD/vdr-control-*/libvdr*.so.* $ADDON_BUILD/$PKG_ADDON_ID/plugin
|
cp -PR $BUILD/vdr-control-*/libvdr*.so.* $ADDON_BUILD/$PKG_ADDON_ID/plugin
|
||||||
|
cp -PR $BUILD/vdr-epgsearch*/libvdr*.so.* $ADDON_BUILD/$PKG_ADDON_ID/plugin
|
||||||
|
|
||||||
# ENABLED_PLUGINS="cardclient constcw sc-conax sc-cryptoworks sc-irdeto sc-nagra sc-seca sc-viaccess sc-videoguard2"
|
# ENABLED_PLUGINS="cardclient constcw sc-conax sc-cryptoworks sc-irdeto sc-nagra sc-seca sc-viaccess sc-videoguard2"
|
||||||
# for plugin in $ENABLED_PLUGINS; do
|
# for plugin in $ENABLED_PLUGINS; do
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
- added live plugin
|
- added live plugin
|
||||||
- added rotorng plugin
|
- added rotorng plugin
|
||||||
- added control plugin
|
- added control plugin
|
||||||
|
- added epgsearch plugin
|
||||||
|
|
||||||
2.1.3
|
2.1.3
|
||||||
- adjust for fontconfig 2.9.0
|
- adjust for fontconfig 2.9.0
|
||||||
|
@ -13,5 +13,6 @@
|
|||||||
<setting id="ENABLE_CONTROL" value="false" />
|
<setting id="ENABLE_CONTROL" value="false" />
|
||||||
<setting id="CONTROL_PORT" value="2002" />
|
<setting id="CONTROL_PORT" value="2002" />
|
||||||
<setting id="ENABLE_ROTORNG" value="false" />
|
<setting id="ENABLE_ROTORNG" value="false" />
|
||||||
|
<setting id="ENABLE_EPGSEARCH" value="false" />
|
||||||
<setting id="SOFTCAM_PLUGIN" value="sc" />
|
<setting id="SOFTCAM_PLUGIN" value="sc" />
|
||||||
</settings>
|
</settings>
|
||||||
|
@ -27,7 +27,7 @@ PKG_LICENSE="GPL"
|
|||||||
PKG_SITE="http://www.openelec.tv"
|
PKG_SITE="http://www.openelec.tv"
|
||||||
PKG_URL=""
|
PKG_URL=""
|
||||||
PKG_DEPENDS=""
|
PKG_DEPENDS=""
|
||||||
PKG_BUILD_DEPENDS="toolchain attr libcap vdr vdr-plugin-xvdr vdr-iptv vdr-wirbelscan vdr-sc vdr-plugin-dvbapi vdr-dynamite vdr-plugin-streamdev vdr-live rotorng vdr-control"
|
PKG_BUILD_DEPENDS="toolchain attr libcap vdr vdr-plugin-xvdr vdr-iptv vdr-wirbelscan vdr-sc vdr-plugin-dvbapi vdr-dynamite vdr-plugin-streamdev vdr-live rotorng vdr-control vdr-epgsearch"
|
||||||
PKG_PRIORITY="optional"
|
PKG_PRIORITY="optional"
|
||||||
PKG_SECTION="service.multimedia"
|
PKG_SECTION="service.multimedia"
|
||||||
PKG_SHORTDESC="vdr: A powerful DVB TV application"
|
PKG_SHORTDESC="vdr: A powerful DVB TV application"
|
||||||
|
@ -75,6 +75,9 @@ fi
|
|||||||
if [ "$ENABLE_CONTROL" == "true" ] ; then
|
if [ "$ENABLE_CONTROL" == "true" ] ; then
|
||||||
VDR_ARG="$VDR_ARG -P 'control -p $CONTROL_PORT'"
|
VDR_ARG="$VDR_ARG -P 'control -p $CONTROL_PORT'"
|
||||||
fi
|
fi
|
||||||
|
if [ "$ENABLE_EPGSEARCH" == "true" ] ; then
|
||||||
|
VDR_ARG="$VDR_ARG -P epgsearch"
|
||||||
|
fi
|
||||||
# dynamite must be LAST loaded plugin
|
# dynamite must be LAST loaded plugin
|
||||||
if [ "$ENABLE_DYNAMITE" == "true" ] ; then
|
if [ "$ENABLE_DYNAMITE" == "true" ] ; then
|
||||||
VDR_ARG="$VDR_ARG -P dynamite"
|
VDR_ARG="$VDR_ARG -P dynamite"
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
<string id="1042">Enable plugin: control</string>
|
<string id="1042">Enable plugin: control</string>
|
||||||
<string id="1043">control: listen on port</string>
|
<string id="1043">control: listen on port</string>
|
||||||
<string id="1041">Enable plugin: rotorng</string>
|
<string id="1041">Enable plugin: rotorng</string>
|
||||||
|
<string id="1044">Enable plugin: epgsearch</string>
|
||||||
<string id="1035">Enable plugin: dynamite</string>
|
<string id="1035">Enable plugin: dynamite</string>
|
||||||
<string id="1036">Enable softcam</string>
|
<string id="1036">Enable softcam</string>
|
||||||
<string id="1037">softcam plugin</string>
|
<string id="1037">softcam plugin</string>
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
<setting id="ENABLE_CONTROL" type="bool" label="1042" default="false" />
|
<setting id="ENABLE_CONTROL" type="bool" label="1042" default="false" />
|
||||||
<setting id="CONTROL_PORT" type="number" label="1043" values="" enable="!eq(-1,false)" default="2002"/>
|
<setting id="CONTROL_PORT" type="number" label="1043" values="" enable="!eq(-1,false)" default="2002"/>
|
||||||
<setting id="ENABLE_ROTORNG" type="bool" label="1041" default="false" />
|
<setting id="ENABLE_ROTORNG" type="bool" label="1041" default="false" />
|
||||||
|
<setting id="ENABLE_EPGSEARCH" type="bool" label="1044" default="false" />
|
||||||
<setting id="ENABLE_DYNAMITE" type="bool" label="1035" default="true" />
|
<setting id="ENABLE_DYNAMITE" type="bool" label="1035" default="true" />
|
||||||
<setting type="sep" />
|
<setting type="sep" />
|
||||||
<setting id="ENABLE_SOFTCAM" type="bool" label="1036" default="true" />
|
<setting id="ENABLE_SOFTCAM" type="bool" label="1036" default="true" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user