diff --git a/packages/mediacenter/xbmc-addon-xvdr/build b/packages/mediacenter/xbmc-addon-xvdr/build deleted file mode 100755 index a53f0f743b..0000000000 --- a/packages/mediacenter/xbmc-addon-xvdr/build +++ /dev/null @@ -1,36 +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 - -# some fixes for autoreconf - touch NEWS AUTHORS ChangeLog - do_autoreconf - -CXXFLAGS="$CXXFLAGS -DZLIB_INTERNAL=1" \ -./configure --host=$TARGET_NAME \ - --build=$HOST_NAME \ - --prefix=/usr/share/xbmc \ - --disable-static \ - --enable-shared - -make diff --git a/packages/mediacenter/xbmc-addon-xvdr/install b/packages/mediacenter/xbmc-addon-xvdr/install deleted file mode 100755 index d77e87c4f5..0000000000 --- a/packages/mediacenter/xbmc-addon-xvdr/install +++ /dev/null @@ -1,27 +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 - -mkdir -p $INSTALL/usr/share/xbmc/addons/pvr.vdr.xvdr - cp -PRf $PKG_BUILD/addons/pvr.vdr.xvdr/resources $INSTALL/usr/share/xbmc/addons/pvr.vdr.xvdr - cp -Pf $PKG_BUILD/addons/pvr.vdr.xvdr/addon.xml $INSTALL/usr/share/xbmc/addons/pvr.vdr.xvdr - cp -Pf $PKG_BUILD/addons/pvr.vdr.xvdr/icon.png $INSTALL/usr/share/xbmc/addons/pvr.vdr.xvdr - cp -Pf $PKG_BUILD/addons/pvr.vdr.xvdr/XBMC_VDR_xvdr.pvr $INSTALL/usr/share/xbmc/addons/pvr.vdr.xvdr diff --git a/packages/mediacenter/xbmc-addon-xvdr/meta b/packages/mediacenter/xbmc-addon-xvdr/package.mk similarity index 87% rename from packages/mediacenter/xbmc-addon-xvdr/meta rename to packages/mediacenter/xbmc-addon-xvdr/package.mk index 3e49e5ce70..6d9450ee68 100644 --- a/packages/mediacenter/xbmc-addon-xvdr/meta +++ b/packages/mediacenter/xbmc-addon-xvdr/package.mk @@ -23,12 +23,16 @@ PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="https://github.com/pipelka/xbmc-addon-xvdr" PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.xz" -PKG_DEPENDS="zlib" -PKG_BUILD_DEPENDS="toolchain zlib" +PKG_DEPENDS_TARGET="zlib" +PKG_BUILD_DEPENDS_TARGET="toolchain zlib" PKG_PRIORITY="optional" PKG_SECTION="mediacenter" PKG_SHORTDESC="XVDR addon for XBMC" PKG_LONGDESC="This addon allows XBMC PVR to connect to the VDR server." -PKG_IS_ADDON="no" -PKG_AUTORECONF="no" +PKG_IS_ADDON="no" +PKG_AUTORECONF="yes" + +PKG_CONFIGURE_OPTS_TARGET="--prefix=/usr/share/xbmc" + +export CXXFLAGS="$CXXFLAGS -DZLIB_INTERNAL=1"