mirror of
https://github.com/libretro/Lakka.git
synced 2024-11-23 15:59:40 +00:00
fbea5df192
Signed-off-by: Stephan Raue <stephan@openelec.tv>
101 lines
3.7 KiB
Bash
Executable File
101 lines
3.7 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
################################################################################
|
|
# This file is part of OpenELEC - http://www.openelec.tv
|
|
# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
|
|
#
|
|
# This Program 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, or (at your option)
|
|
# any later version.
|
|
#
|
|
# This Program 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.tv; see the file COPYING. If not, write to
|
|
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
# http://www.gnu.org/copyleft/gpl.html
|
|
################################################################################
|
|
|
|
. config/options $1
|
|
|
|
IFS=" "
|
|
for i in $PKG_ADDON_REQUIRES; do
|
|
REQUIRES_ADDONNAME=`echo $i | cut -f1 -d ":"`
|
|
REQUIRES_ADDONVERSION=`echo $i | cut -f2 -d ":"`
|
|
REQUIRES="$REQUIRES\n <import addon=\"$REQUIRES_ADDONNAME\" version=\"$REQUIRES_ADDONVERSION\" />"
|
|
done
|
|
|
|
unset IFS
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "usage: $0 package_name"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -n $PKG_ARCH -a ! "$PKG_ARCH" = "any" ]; then
|
|
echo "$PKG_ARCH" | grep -q "$TARGET_ARCH" || exit 0
|
|
echo "$PKG_ARCH" | grep -q "\-$TARGET_ARCH" && exit 0
|
|
fi
|
|
|
|
$SCRIPTS/build $@
|
|
|
|
printf "%${INDENT}c CREATE ADDON $1\n" >&$SILENT_OUT
|
|
export INDENT=$((${INDENT:-1}+$INDENT_SIZE))
|
|
|
|
if [ -f $PKG_DIR/addon ]; then
|
|
|
|
rm -rf $ADDON_BUILD
|
|
|
|
$PKG_DIR/addon $@ >&$VERBOSE_OUT
|
|
|
|
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID
|
|
if [ ! -f $ADDON_BUILD/$PKG_ADDON_ID/addon.xml ]; then
|
|
cp config/addon/addon.xml $ADDON_BUILD/$PKG_ADDON_ID
|
|
$SED -e "s|@PKG_ADDON_ID@|$PKG_ADDON_ID|g" \
|
|
-e "s|@PKG_NAME@|$PKG_NAME|g" \
|
|
-e "s|@ADDON_VERSION@|$OS_VERSION.$PKG_REV|g" \
|
|
-e "s|@PKG_ADDON_TYPE@|$PKG_ADDON_TYPE|g" \
|
|
-e "s|@REQUIRES@|$REQUIRES|g" \
|
|
-e "s|@PKG_SHORTDESC@|$PKG_SHORTDESC|g" \
|
|
-e "s|@OS_VERSION@|$OS_VERSION|g" \
|
|
-e "s|@PKG_LONGDESC@|$PKG_LONGDESC|g" \
|
|
-i $ADDON_BUILD/$PKG_ADDON_ID/addon.xml
|
|
fi
|
|
|
|
if [ -f $PKG_DIR/source/default.py ]; then
|
|
cp -R $PKG_DIR/source/* $ADDON_BUILD/$PKG_ADDON_ID
|
|
else
|
|
echo "*** WARNING: you *maybe* need at least $PKG_DIR/source/default.py so your addon can work ***"
|
|
fi
|
|
|
|
if [ -f $PKG_DIR/icon/icon.png ]; then
|
|
cp $PKG_DIR/icon/icon.png $ADDON_BUILD/$PKG_ADDON_ID
|
|
else
|
|
echo "*** WARNING: its recommended to have an $PKG_DIR/icon/icon.png ***"
|
|
fi
|
|
|
|
if [ -f $PKG_DIR/changelog.txt ]; then
|
|
cp $PKG_DIR/changelog.txt $ADDON_BUILD/$PKG_ADDON_ID
|
|
else
|
|
echo "*** WARNING: its recommended to have an $PKG_DIR/changelog.txt ***"
|
|
fi
|
|
|
|
if [ -d $ADDON_BUILD/mkimage ]; then
|
|
$ROOT/$TOOLCHAIN/bin/mksquashfs $ADDON_BUILD/mkimage $ADDON_BUILD/$PKG_ADDON_ID/$1.img -noappend -comp lzma
|
|
fi
|
|
|
|
cd $ADDON_BUILD
|
|
echo "*** compressing Addon $PKG_ADDON_ID ... ***"
|
|
zip -rq $PKG_ADDON_ID-$OS_VERSION.$PKG_REV.zip $PKG_ADDON_ID;
|
|
cd -
|
|
|
|
mkdir -p $TARGET/$ADDONS/$OS_VERSION/$PROJECT/$TARGET_ARCH/$PKG_ADDON_ID
|
|
cp $ADDON_BUILD/$PKG_ADDON_ID-$OS_VERSION.$PKG_REV.zip $TARGET/$ADDONS/$OS_VERSION/$PROJECT/$TARGET_ARCH/$PKG_ADDON_ID
|
|
cp $PKG_DIR/changelog.txt $TARGET/$ADDONS/$OS_VERSION/$PROJECT/$TARGET_ARCH/$PKG_ADDON_ID/changelog-$OS_VERSION.$PKG_REV.txt
|
|
cp $PKG_DIR/icon/icon.png $TARGET/$ADDONS/$OS_VERSION/$PROJECT/$TARGET_ARCH/$PKG_ADDON_ID/icon.png
|
|
fi
|