mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-01-08 11:58:19 +00:00
27 lines
915 B
Makefile
27 lines
915 B
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-wirbelscan"
|
|
PKG_VERSION="2024.09.15"
|
|
PKG_SHA256="22317c5a919834d70aee309248e7fb8b9f458819dee0e5ccdbedee7fdada8913"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://www.gen2vdr.de/wirbel/wirbelscan/index2.html"
|
|
PKG_URL="https://www.gen2vdr.de/wirbel/wirbelscan/vdr-wirbelscan-${PKG_VERSION}.tgz"
|
|
PKG_DEPENDS_TARGET="toolchain vdr librepfunc"
|
|
PKG_NEED_UNPACK="$(get_pkg_directory vdr)"
|
|
PKG_LONGDESC="Performs a channel scans for DVB-T, DVB-C and DVB-S"
|
|
PKG_TOOLCHAIN="manual"
|
|
PKG_BUILD_FLAGS="+pic"
|
|
|
|
configure_target() {
|
|
export PKG_CONFIG_PATH="$(get_install_dir librepfunc)/usr/lib/pkgconfig:${PKG_CONFIG_PATH}"
|
|
}
|
|
|
|
make_target() {
|
|
VDR_DIR=$(get_build_dir vdr)
|
|
make VDRDIR=${VDR_DIR} \
|
|
LIBDIR="." \
|
|
LOCALEDIR="./locale"
|
|
}
|