diff --git a/packages/3rdparty/lib/libhdhomerun/build b/packages/3rdparty/lib/libhdhomerun/build deleted file mode 100755 index a377583739..0000000000 --- a/packages/3rdparty/lib/libhdhomerun/build +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv) -# -# OpenELEC 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. -# -# OpenELEC 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 OpenELEC. If not, see . -################################################################################ - -. config/options $1 - -cd $PKG_BUILD - -make CROSS_COMPILE=$TARGET_PREFIX diff --git a/packages/3rdparty/lib/libhdhomerun/meta b/packages/multimedia/libhdhomerun/package.mk similarity index 84% rename from packages/3rdparty/lib/libhdhomerun/meta rename to packages/multimedia/libhdhomerun/package.mk index b563204184..89f79749a9 100644 --- a/packages/3rdparty/lib/libhdhomerun/meta +++ b/packages/multimedia/libhdhomerun/package.mk @@ -24,11 +24,22 @@ PKG_LICENSE="LGPL" PKG_SITE="http://www.silicondust.com/products/hdhomerun/dvbt/" PKG_URL="http://download.silicondust.com/hdhomerun/${PKG_NAME}_${PKG_VERSION}.tgz" PKG_SOURCE_DIR="$PKG_NAME" -PKG_DEPENDS="" -PKG_BUILD_DEPENDS="toolchain" +PKG_DEPENDS_TARGET="" +PKG_BUILD_DEPENDS_TARGET="toolchain" PKG_PRIORITY="optional" PKG_SECTION="driver" PKG_SHORTDESC="The library provides functionality to setup the HDHomeRun, change channels, setup PID filtering, get signal quality and so on." PKG_LONGDESC="The library provides functionality to setup the HDHomeRun, change channels, setup PID filtering, get signal quality and so on." + PKG_IS_ADDON="no" PKG_AUTORECONF="no" + +PKG_MAKE_OPTS_TARGET="CROSS_COMPILE=$TARGET_PREFIX" + +makeinstall_target() { + mkdir -p $INSTALL/usr/bin + cp -PR hdhomerun_config $INSTALL/usr/bin + + mkdir -p $INSTALL/usr/lib/ + cp -PR libhdhomerun.so $INSTALL/usr/lib/ +}