Lakka/scripts/install
Stephan Raue 976a4acd36 scripts/install: use $INSTALL_ROOT and $INSTALL_SYSTEM to seperate initramfs from system
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2012-02-19 14:03:43 +01:00

83 lines
2.4 KiB
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
################################################################################
# This file is part of OpenELEC - http://www.openelec.tv
# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
#      Copyright (C) 2010-2011 Roman Weber (roman@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
STAMP=$STAMPS_INSTALL/$1/install
if [ -z "$1" ]; then
echo "usage: $0 package_name"
exit 1
fi
mkdir -p $STAMPS_INSTALL/$1
if [ -f $STAMP -a $PKG_DIR/install -nt $STAMP ]; then
rm -f $STAMP
fi
[ -f $STAMP -a $FORCE_INSTALL = "no" ] && exit 0
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
if [ -d $PKG_DIR/init.d ]; then
mkdir -p $INSTALL_SYSTEM/etc/init.d
cp $PKG_DIR/init.d/* $INSTALL_SYSTEM/etc/init.d/
fi
if [ -d $PKG_DIR/profile.d ]; then
mkdir -p $INSTALL_SYSTEM/etc/profile.d
cp $PKG_DIR/profile.d/*.conf $INSTALL_SYSTEM/etc/profile.d/
fi
if [ -d $PKG_DIR/udev.d ]; then
mkdir -p $INSTALL_SYSTEM/lib/udev/rules.d
cp $PKG_DIR/udev.d/*.rules $INSTALL_SYSTEM/lib/udev/rules.d
fi
if [ -d $PKG_DIR/init.network ]; then
mkdir -p $INSTALL_SYSTEM/etc/init.d/network
cp $PKG_DIR/init.network/* $INSTALL_SYSTEM/etc/init.d/network/
fi
$SCRIPTS/build $@
printf "%${INDENT}c INSTALL $1\n" >&$SILENT_OUT
export INDENT=$((${INDENT:-1}+$INDENT_SIZE))
for p in $PKG_DEPENDS; do
$SCRIPTS/install $p
done
if [ -f $PKG_DIR/install ]; then
$PKG_DIR/install $@ >&$VERBOSE_OUT
fi
for i in `sed -n "s/^\([^#].*\)=\".*$/\1/p" $PROJECT_DIR/$PROJECT/options | grep -v "#"`; do
eval val=\$$i
echo "STAMP_$i=\"$val"\" >> $STAMP
done