mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 12:46:19 +00:00
23 lines
786 B
Makefile
23 lines
786 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="2021.03.07"
|
|
PKG_SHA256="9267ebd12a3a58e0ae453f6e311782262ae0782b25721cc8d7e5048a76cb3759"
|
|
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"
|
|
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"
|
|
|
|
make_target() {
|
|
VDR_DIR=$(get_build_dir vdr)
|
|
make VDRDIR=${VDR_DIR} \
|
|
LIBDIR="." \
|
|
LOCALEDIR="./locale"
|
|
}
|