mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
25 lines
821 B
Makefile
25 lines
821 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="w_scan"
|
|
PKG_VERSION="20170107"
|
|
PKG_SHA256="38e0f38a7bf06cff6d6ea01652ad4ee60da2cb0e937360468f936da785b46ffe"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://wirbel.htpc-forum.de/w_scan/index2.html"
|
|
PKG_URL="http://wirbel.htpc-forum.de/$PKG_NAME/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="A channel scan tool which generates ATSC, DVB-C, DVB-S/S2 and DVB-T channels.conf files."
|
|
PKG_TOOLCHAIN="autotools"
|
|
|
|
# aml 3.14 hack
|
|
pre_configure_target() {
|
|
if [ "$LINUX" = "amlogic-3.14" -o "$LINUX" = "amlogic-3.10" ]; then
|
|
sed -i 's/DVB_HEADER=0/DVB_HEADER=1/g' $PKG_BUILD/configure*
|
|
sed -i 's/HAS_DVB_API5=0/HAS_DVB_API5=1/g' $PKG_BUILD/configure*
|
|
fi
|
|
}
|
|
|
|
makeinstall_target() {
|
|
:
|
|
}
|