VirtualBox

source: vbox/trunk/src/VBox/Installer/darwin/VirtualBox/postflight@ 31673

Last change on this file since 31673 was 31673, checked in by vboxsync, 15 years ago

Installer-OSX: change headers

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1#!/bin/sh
2
3#
4# Copyright (C) 2007-2010 Oracle Corporation
5#
6# This file is part of VirtualBox Open Source Edition (OSE), as
7# available from http://www.virtualbox.org. This file is free software;
8# you can redistribute it and/or modify it under the terms of the GNU
9# General Public License (GPL) as published by the Free Software
10# Foundation, in version 2 as it comes in the "COPYING" file of the
11# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
12# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
13#
14
15#
16# Correct the ownership of the directories in case there
17# was an existing installation.
18#
19chown -R root:admin /Applications/VirtualBox.app
20
21#
22# Select the right architecture.
23#
24MY_ARCH=`uname -m`
25if test "$MY_ARCH" = "x86_64"; then
26 MY_ARCH="amd64"
27else
28 MY_ARCH="x86"
29fi
30set -e
31for trg in `ls /Applications/VirtualBox.app/Contents/MacOS/*-${MY_ARCH}`;
32do
33 linkname=`echo "$trg" | sed -e 's|-'"${MY_ARCH}"'$||' `
34 if test "$linkname" = "$trg"; then
35 echo "oops: $trg" 1>&2
36 exit 1;
37 fi
38 rm -f "$linkname"
39 ln -vh "$trg" "$linkname"
40done
41
42#
43# Install the Python bindings
44#
45
46VBOX_INSTALL_PATH=/Applications/VirtualBox.app/Contents/MacOS
47PYTHON="python python2.3 python2.5 python2.6"
48if [ -e "${VBOX_INSTALL_PATH}/sdk/installer/vboxapisetup.py" ]; then
49 for p in $PYTHON; do
50 # Install the python bindings if python is in the path
51 if [ "`\${p} -c 'print "test"' 2> /dev/null`" = "test" ]; then
52 echo 1>&2 "Python found: ${p}, installing bindings..."
53 # Pass install path via environment
54 export VBOX_INSTALL_PATH
55 /bin/sh -c "cd $VBOX_INSTALL_PATH/sdk/installer && ${p} vboxapisetup.py install 2> /dev/null"
56 fi
57 done
58fi
59
60#
61# Install any custom files
62#
63CP="/bin/cp -f"
64CPDIR="${CP} -R"
65DATAPATH="`/usr/bin/dirname "${0}"`/../../../../../.."
66if [ -d "${DATAPATH}/.custom" ]; then
67 echo 1>&2 "Copy ${DATAPATH}/.custom to ${VBOX_INSTALL_PATH}...";
68 ${CPDIR} "${DATAPATH}/.custom/" "${VBOX_INSTALL_PATH}/custom"
69fi
70
71exit 0;
72
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette