mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 05:36:47 +00:00
Merge pull request #8324 from mglae/le12_vdr_so_locale_fix
vdr-addon: update addon to (4)
This commit is contained in:
commit
d7616c51c3
@ -34,7 +34,7 @@ LDFLAGS += $(shell pkg-config --libs $(LIBREPFUNC))
|
|||||||
UNCRUSTIFY_FILES = scanner.cpp scanner.h scanfilter.cpp scanfilter.h statemachine.h statemachine.cpp
|
UNCRUSTIFY_FILES = scanner.cpp scanner.h scanfilter.cpp scanfilter.h statemachine.h statemachine.cpp
|
||||||
|
|
||||||
OBJS = $(PLUGIN).o common.o menusetup.o satellites.o scanner.o
|
OBJS = $(PLUGIN).o common.o menusetup.o satellites.o scanner.o
|
||||||
OBJS += scanfilter.o statemachine.o countries.o
|
OBJS += scanfilter.o statemachine.o countries.o si_ext.o
|
||||||
|
|
||||||
all: libvdr-$(PLUGIN).so i18n
|
all: libvdr-$(PLUGIN).so i18n
|
||||||
|
|
||||||
|
@ -25,5 +25,6 @@ make_target() {
|
|||||||
make VDRDIR=${VDR_DIR} \
|
make VDRDIR=${VDR_DIR} \
|
||||||
INCLUDES="-I." \
|
INCLUDES="-I." \
|
||||||
LIBDIR="." \
|
LIBDIR="." \
|
||||||
LOCALEDIR="./locale"
|
LOCALEDIR="./locale" \
|
||||||
|
install
|
||||||
}
|
}
|
||||||
|
@ -23,7 +23,8 @@ make_target() {
|
|||||||
VDR_DIR=$(get_build_dir vdr)
|
VDR_DIR=$(get_build_dir vdr)
|
||||||
make VDRDIR=${VDR_DIR} \
|
make VDRDIR=${VDR_DIR} \
|
||||||
LIBDIR="." \
|
LIBDIR="." \
|
||||||
LOCALEDIR="./locale"
|
LOCALEDIR="./locale" \
|
||||||
|
install
|
||||||
}
|
}
|
||||||
|
|
||||||
post_make_target() {
|
post_make_target() {
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
PKG_NAME="vdr-addon"
|
PKG_NAME="vdr-addon"
|
||||||
PKG_VERSION="2.6.4"
|
PKG_VERSION="2.6.4"
|
||||||
PKG_REV="3"
|
PKG_REV="4"
|
||||||
PKG_ARCH="any"
|
PKG_ARCH="any"
|
||||||
PKG_LICENSE="GPL"
|
PKG_LICENSE="GPL"
|
||||||
PKG_SITE="https://libreelec.tv"
|
PKG_SITE="https://libreelec.tv"
|
||||||
@ -49,12 +49,14 @@ addon() {
|
|||||||
cp -P $(get_build_dir vdr-plugin-xmltv2vdr)/dist/epgdata2xmltv/epgdata2xmltv.dist ${ADDON_BUILD}/${PKG_ADDON_ID}/config/epgsources/epgdata2xmltv
|
cp -P $(get_build_dir vdr-plugin-xmltv2vdr)/dist/epgdata2xmltv/epgdata2xmltv.dist ${ADDON_BUILD}/${PKG_ADDON_ID}/config/epgsources/epgdata2xmltv
|
||||||
|
|
||||||
# copy binaries
|
# copy binaries
|
||||||
for pkg in ddci2 dummydevice dvbapi eepg epgfixer epgsearch iptv live restfulapi robotv satip vnsiserver wirbelscan wirbelscancontrol xmltv2vdr; do
|
for pkg in ddci2 dummydevice dvbapi eepg epgfixer epgsearch iptv live restfulapi robotv satip \
|
||||||
cp -PR $(get_build_dir vdr-plugin-${pkg})/libvdr*.so* ${ADDON_BUILD}/${PKG_ADDON_ID}/plugin
|
vnsiserver wirbelscan wirbelscancontrol xmltv2vdr; do
|
||||||
|
cp -PR $(get_build_dir vdr-plugin-${pkg})/libvdr*.so.* ${ADDON_BUILD}/${PKG_ADDON_ID}/plugin
|
||||||
done
|
done
|
||||||
|
|
||||||
# copy locale (omit ddci, dummydevice, robotv, wirbelscancontrol, xmltv2vdr)
|
# copy locale (omit ddci, dummydevice, robotv)
|
||||||
for pkg in dvbapi eepg epgfixer epgsearch iptv live restfulapi satip vnsiserver wirbelscan; do
|
for pkg in dvbapi eepg epgfixer epgsearch iptv live restfulapi satip vnsiserver wirbelscan \
|
||||||
|
wirbelscancontrol xmltv2vdr; do
|
||||||
cp -PR $(get_build_dir vdr-plugin-${pkg})/locale/* ${ADDON_BUILD}/${PKG_ADDON_ID}/locale
|
cp -PR $(get_build_dir vdr-plugin-${pkg})/locale/* ${ADDON_BUILD}/${PKG_ADDON_ID}/locale
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user