mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
35 lines
1.2 KiB
Makefile
35 lines
1.2 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-satip"
|
|
PKG_VERSION="b697e435d4bf42754309e6b5a9c5f8ff43463077"
|
|
PKG_SHA256="9ccb90b4b55848bad738236e07e0feb2af9e78e6c9ee6614b5a1172db3e00fb0"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.saunalahti.fi/~rahrenbe/vdr/satip/"
|
|
PKG_URL="https://github.com/rofafor/vdr-plugin-satip/archive/$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain vdr curl tinyxml"
|
|
PKG_NEED_UNPACK="$(get_pkg_directory vdr)"
|
|
PKG_LONGDESC="This is an SAT>IP plugin for the Video Disk Recorder (VDR)."
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
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 \
|
|
SATIP_USE_TINYXML=1 \
|
|
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}
|
|
}
|