VirtualBox

source: vbox/trunk/src/VBox/Installer/solaris/makepackage.sh@ 9230

Last change on this file since 9230 was 9159, checked in by vboxsync, 16 years ago

Solaris VBI installer: pack it in the same .tar.gz and removed duplicate readme.

  • Property svn:eol-style set to LF
File size: 3.9 KB
Line 
1#!/bin/sh
2# Sun xVM VirtualBox
3# VirtualBox Solaris package creation script.
4#
5# Copyright (C) 2007-2008 Sun Microsystems, Inc.
6#
7# This file is part of VirtualBox Open Source Edition (OSE), as
8# available from http://www.virtualbox.org. This file is free software;
9# you can redistribute it and/or modify it under the terms of the GNU
10# General Public License (GPL) as published by the Free Software
11# Foundation, in version 2 as it comes in the "COPYING" file of the
12# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14#
15# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
16# Clara, CA 95054 USA or visit http://www.sun.com if you need
17# additional information or have any questions.
18#
19
20#
21# Usage:
22# makespackage.sh $(PATH_TARGET)/install packagename $(BUILD_TARGET_ARCH)
23
24if [ -z "$3" ]; then
25 echo "Usage: $0 installdir packagename x86|amd64"
26 echo "-- packagename must not have any extension (e.g. VirtualBox-SunOS-amd64-r28899)"
27 exit 1
28fi
29
30VBOX_PKGFILE=$2.pkg
31VBOX_ARCHIVE=$2.tar.gz
32VBOX_PKGNAME=SUNWvbox
33
34VBOX_GGREP=/usr/sfw/bin/ggrep
35VBOX_AWK=/usr/bin/awk
36VBOX_GTAR=/usr/sfw/bin/gtar
37
38# check for GNU grep we use which might not ship with all Solaris
39if test ! -f "$VBOX_GGREP" && test ! -h "$VBOX_GGREP"; then
40 echo "## GNU grep not found in $VBOX_GGREP."
41 exit 1
42fi
43
44# check for GNU tar we use which might not ship with all Solaris
45if test ! -f "$VBOX_GTAR" && test ! -h "$VBOX_GTAR"; then
46 echo "## GNU tar not found in $VBOX_GTAR."
47 exit 1
48fi
49
50# bail out on non-zero exit status
51set -e
52
53# prepare file list
54cd "$1"
55echo 'i pkginfo=./vbox.pkginfo' > prototype
56echo 'i postinstall=./postinstall.sh' >> prototype
57echo 'i preremove=./preremove.sh' >> prototype
58echo 'i space=./vbox.space' >> prototype
59if test -f "./vbox.copyright"; then
60 echo 'i copyright=./vbox.copyright' >> prototype
61fi
62echo 'e sed /etc/devlink.tab ? ? ?' >> prototype
63find . -print | $VBOX_GGREP -v -E 'prototype|makepackage.sh|vbox.pkginfo|postinstall.sh|preremove.sh|ReadMe.txt|vbox.space|vbox.copyright' | pkgproto >> prototype
64
65# don't grok for the sed class files
66$VBOX_AWK 'NF == 6 && $2 == "none" { $5 = "root"; $6 = "bin" } { print }' prototype > prototype2
67$VBOX_AWK 'NF == 6 && $2 == "none" { $3 = "opt/VirtualBox/"$3"="$3 } { print }' prototype2 > prototype
68
69# install the kernel module to the right place.
70if test "$3" = "x86"; then
71 $VBOX_AWK 'NF == 6 && $3 == "opt/VirtualBox/vboxdrv=vboxdrv" { $3 = "platform/i86pc/kernel/drv/vboxdrv=vboxdrv"; $6 = "sys" } { print }' prototype > prototype2
72else
73 $VBOX_AWK 'NF == 6 && $3 == "opt/VirtualBox/vboxdrv=vboxdrv" { $3 = "platform/i86pc/kernel/drv/amd64/vboxdrv=vboxdrv"; $6 = "sys" } { print }' prototype > prototype2
74fi
75
76$VBOX_AWK 'NF == 6 && $3 == "opt/VirtualBox/vboxdrv.conf=vboxdrv.conf" { $3 = "platform/i86pc/kernel/drv/vboxdrv.conf=vboxdrv.conf" } { print }' prototype2 > prototype
77
78# desktop links and icons
79$VBOX_AWK 'NF == 6 && $3 == "opt/VirtualBox/virtualbox.desktop=virtualbox.desktop" { $3 = "usr/share/applications/virtualbox.desktop=virtualbox.desktop" } { print }' prototype > prototype2
80$VBOX_AWK 'NF == 6 && $3 == "opt/VirtualBox/VBox.png=VBox.png" { $3 = "usr/share/pixmaps/VBox.png=VBox.png" } { print }' prototype2 > prototype
81
82
83rm prototype2
84
85# explicitly set timestamp to shutup warning
86VBOXPKG_TIMESTAMP=vbox`date '+%Y%m%d%H%M%S'`
87
88# create the package instance
89pkgmk -p $VBOXPKG_TIMESTAMP -o -r .
90
91# translate into package datastream
92pkgtrans -s -o /var/spool/pkg "`pwd`/$VBOX_PKGFILE" "$VBOX_PKGNAME"
93
94# $4 if exist would contain the path to the VBI package to include in the .tar.gz
95if test -f "$4"; then
96 $VBOX_GTAR zcvf "$VBOX_ARCHIVE" "$VBOX_PKGFILE" $4 autoresponse ReadMe.txt
97else
98 $VBOX_GTAR zcvf "$VBOX_ARCHIVE" "$VBOX_PKGFILE" autoresponse ReadMe.txt
99fi
100
101echo "## Packaging and transfer completed successfully!"
102rm -rf "/var/spool/pkg/$VBOX_PKGNAME"
103
104exit $?
105
Note: See TracBrowser for help on using the repository browser.

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