4927f1d443
Signed-off-by: CvH <namerp@googlemail.com>
39 lines
1.3 KiB
Makefile
39 lines
1.3 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="vdr-plugin-vnsiserver"
|
|
PKG_VERSION="47a90dd9298753083a9a6482bb9990ea9a88aa7a"
|
|
PKG_SHA256="cd8087306dc5d77b150ca9f77bba91460507dc9a2336b9f61ce13aeefecf23e3"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/mdre77/vdr-plugin-vnsiserver"
|
|
PKG_URL="https://github.com/mdre77/vdr-plugin-vnsiserver/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain vdr"
|
|
PKG_NEED_UNPACK="$(get_pkg_directory vdr) $(get_pkg_directory vdr-plugin-wirbelscan)"
|
|
PKG_LONGDESC="VDR plugin to handle Kodi clients."
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
pre_build_target() {
|
|
WIRBELSCAN_DIR=$(get_build_dir vdr-plugin-wirbelscan)
|
|
ln -sf ${WIRBELSCAN_DIR}/wirbelscan_services.h ${PKG_BUILD}
|
|
}
|
|
|
|
make_target() {
|
|
VDR_DIR=$(get_build_dir vdr)
|
|
export PKG_CONFIG_PATH=${VDR_DIR}:${PKG_CONFIG_PATH}
|
|
export CPLUS_INCLUDE_PATH=${VDR_DIR}/include
|
|
|
|
make \
|
|
LIBDIR="." \
|
|
LOCDIR="./locale" \
|
|
all install-i18n
|
|
}
|
|
|
|
post_make_target() {
|
|
VDR_DIR=$(get_build_dir vdr)
|
|
VDR_APIVERSION=$(sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$/\1/p' ${VDR_DIR}/config.h)
|
|
LIB_NAME=lib${PKG_NAME/-plugin/}
|
|
|
|
cp --remove-destination ${PKG_BUILD}/${LIB_NAME}.so ${PKG_BUILD}/${LIB_NAME}.so.${VDR_APIVERSION}
|
|
}
|