[xbmc-rebrand] xbmc-pvr-addons: move to package 'kodi-pvr-addons'

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2014-10-21 12:59:21 +02:00
parent efe648d8e5
commit fbaaa36e36
7 changed files with 12 additions and 12 deletions

View File

@ -16,18 +16,18 @@
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>. # along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
################################################################################ ################################################################################
PKG_NAME="xbmc-pvr-addons" PKG_NAME="kodi-pvr-addons"
PKG_VERSION="259d150" PKG_VERSION="259d150"
PKG_REV="1" PKG_REV="1"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="GPL" PKG_LICENSE="GPL"
PKG_SITE="https://github.com/opdenkamp/xbmc-pvr-addons" PKG_SITE="https://github.com/opdenkamp/xbmc-pvr-addons"
PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.xz" PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.xz"
PKG_DEPENDS_TARGET="toolchain curl" PKG_DEPENDS_TARGET="toolchain curl kodi"
PKG_PRIORITY="optional" PKG_PRIORITY="optional"
PKG_SECTION="mediacenter" PKG_SECTION="mediacenter"
PKG_SHORTDESC="Various PVR addons for XBMC" PKG_SHORTDESC="Various PVR addons for Kodi"
PKG_LONGDESC="This addons allows XBMC PVR to connect to various TV/PVR backends and tuners." PKG_LONGDESC="This addons allows Kodi PVR to connect to various TV/PVR backends and tuners."
PKG_IS_ADDON="no" PKG_IS_ADDON="no"
PKG_AUTORECONF="yes" PKG_AUTORECONF="yes"

View File

@ -20,24 +20,24 @@
################################################################################ ################################################################################
echo "getting sources..." echo "getting sources..."
if [ ! -d xbmc-pvr-addons.git ]; then if [ ! -d kodi-pvr-addons.git ]; then
git clone git://github.com/opdenkamp/xbmc-pvr-addons.git -b master xbmc-pvr-addons.git git clone git://github.com/opdenkamp/xbmc-pvr-addons.git -b master kodi-pvr-addons.git
fi fi
cd xbmc-pvr-addons.git cd kodi-pvr-addons.git
git pull git pull
GIT_REV=`git log -n1 --format=%h` GIT_REV=`git log -n1 --format=%h`
cd .. cd ..
echo "copying sources..." echo "copying sources..."
rm -rf xbmc-pvr-addons-$GIT_REV rm -rf kodi-pvr-addons-$GIT_REV
cp -R xbmc-pvr-addons.git xbmc-pvr-addons-$GIT_REV cp -R kodi-pvr-addons.git kodi-pvr-addons-$GIT_REV
echo "cleaning sources..." echo "cleaning sources..."
rm -rf xbmc-pvr-addons-$GIT_REV/.git rm -rf kodi-pvr-addons-$GIT_REV/.git
echo "packing sources..." echo "packing sources..."
tar cvJf xbmc-pvr-addons-$GIT_REV.tar.xz xbmc-pvr-addons-$GIT_REV tar cvJf kodi-pvr-addons-$GIT_REV.tar.xz kodi-pvr-addons-$GIT_REV
echo "remove temporary sourcedir..." echo "remove temporary sourcedir..."
rm -rf xbmc-pvr-addons-$GIT_REV rm -rf kodi-pvr-addons-$GIT_REV