Skip to content

Commit

Permalink
dvb-tools: add w_scan
Browse files Browse the repository at this point in the history
  • Loading branch information
CvH committed Oct 20, 2016
1 parent 6a0a361 commit 6d5e7b8
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 10 deletions.
38 changes: 38 additions & 0 deletions packages/addons/addon-depends/dvb-tools-depends/w_scan/package.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
################################################################################
# This file is part of LibreELEC - http://www.libreelec.tv
# Copyright (C) 2016 Team LibreELEC
#
# LibreELEC is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# LibreELEC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with LibreELEC. If not, see <http://www.gnu.org/licenses/>.
################################################################################

PKG_NAME="w_scan"
PKG_VERSION="20141122"
PKG_REV="1"
PKG_ARCH="any"
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_SECTION="tools"
PKG_SHORTDESC="DVBlast is a small channel scan tool to create an channel.conf for VDR"
PKG_LONGDESC="DVBlast is a small channel scan tool to create an channel.conf for VDR"
PKG_AUTORECONF="yes"

# aml 3.14 is meh
pre_configure_target() {
if [ "$TARGET_ARCH" = "aarch64" ]; then
sed -i 's/DVB_HEADER=0/DVB_HEADER=1/g' $ROOT/$PKG_BUILD/configure*
sed -i 's/HAS_DVB_API5=0/HAS_DVB_API5=1/g' $ROOT/$PKG_BUILD/configure*
fi
}
5 changes: 4 additions & 1 deletion packages/addons/tools/dvb-tools/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
8.0.100
101
- added w_scan

100
- Initial Release
18 changes: 9 additions & 9 deletions packages/addons/tools/dvb-tools/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -18,31 +18,28 @@

PKG_NAME="dvb-tools"
PKG_VERSION=""
PKG_REV="100"
PKG_REV="101"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE=""
PKG_URL=""
PKG_DEPENDS_TARGET="toolchain"
PKG_SECTION="virtual"
PKG_SHORTDESC="A bundle of dvb tools and programs"
PKG_LONGDESC="This bundle currently includes dvb-apps, dvb-fe-tool and dvblast."
PKG_SHORTDESC="DVB-Tools: is a bundle of dvb tools and programs"
PKG_LONGDESC="This bundle currently includes dvb-apps, dvb-fe-tool, dvblast and w_scan."
PKG_AUTORECONF="no"

PKG_IS_ADDON="yes"
PKG_ADDON_NAME="DVB Tools"
PKG_ADDON_TYPE="xbmc.python.script"
PKG_ADDON_PROVIDES=""

PKG_AUTORECONF="no"

PKG_DEPENDS_TARGET="toolchain \
dvb-apps \
dvb-fe-tool \
dvblast"
dvblast \
w_scan"

addon() {
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/lib/

mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/bin/
# dvb-apps
cp -P $(get_build_dir dvb-apps)/util/dvbdate/dvbdate $ADDON_BUILD/$PKG_ADDON_ID/bin
Expand All @@ -63,5 +60,8 @@ addon() {
# dvblast
cp -P $(get_build_dir dvblast)/dvblast $ADDON_BUILD/$PKG_ADDON_ID/bin

# w_scan
cp -P $(get_build_dir w_scan)/.$TARGET_NAME/w_scan $ADDON_BUILD/$PKG_ADDON_ID/bin

debug_strip $ADDON_BUILD/$PKG_ADDON_ID/bin
}

0 comments on commit 6d5e7b8

Please sign in to comment.