diff options
author | lcapriotti <lcapriotti@svn> | 2010-08-18 12:33:49 +0000 |
---|---|---|
committer | lcapriotti <lcapriotti@svn> | 2010-08-18 12:33:49 +0000 |
commit | e93ffa48048666713db4d8b642faecb7a883ef13 (patch) | |
tree | c47419539b7d7f4d305e80648fdd663755f84f0a /tools | |
parent | 30fcd6150aa026cdef5239eccac14e248434b122 (diff) |
installer hooks helps in customizing at install time
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@32904 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/XBMCLive/SDK/buildDEBs/xbmclive-installhelpers/finish-install.d/14runHooks | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tools/XBMCLive/SDK/buildDEBs/xbmclive-installhelpers/finish-install.d/14runHooks b/tools/XBMCLive/SDK/buildDEBs/xbmclive-installhelpers/finish-install.d/14runHooks new file mode 100755 index 0000000000..c5443f27f8 --- /dev/null +++ b/tools/XBMCLive/SDK/buildDEBs/xbmclive-installhelpers/finish-install.d/14runHooks @@ -0,0 +1,39 @@ +#!/bin/sh + +# Copyright (C) 2005-2010 Team XBMC +# http://www.xbmc.org +# +# 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 XBMC; 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 + +hookDir=Hooks + +cp -R /cdrom/$hookDir /target/tmp + +cat > /target/tmp/runHooks.sh << 'EOF' +hookDir=$1 + +filesToRun=$(ls /tmp/$hookDir/*.sh 2> /dev/null) +if [ -n "$filesToRun" ]; then + for hook in $filesToRun; do + sh $hook + done +fi +EOF + +in-target sh /tmp/runHooks.sh $hookDir + +rm /target/tmp/runHooks.sh +rm -rf /tmp/Hooks |