~ubuntu-branches/ubuntu/trusty/vice/trusty

« back to all changes in this revision

Viewing changes to src/arch/unix/qnx4/make-bindist.sh

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2013-07-28 20:38:23 UTC
  • mfrom: (1.2.5)
  • mto: This revision was merged to the branch mainline in revision 27.
  • Revision ID: package-import@ubuntu.com-20130728203823-w495rps5wuykespp
Tags: upstream-2.4.dfsg
ImportĀ upstreamĀ versionĀ 2.4.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
#
4
4
# written by Marco van den Heuvel <blackystardust68@yahoo.com>
5
5
#
6
 
# make-bindist.sh <vice-version> <prefix> <zip|nozip> <x64sc-include> <topsrcdir>
7
 
#                 $1             $2       $3          $4              $5
 
6
# make-bindist.sh <vice-version> <prefix> <--enable-arch> <zip|nozip> <x64sc-include> <topsrcdir>
 
7
#                 $1             $2       $3              $4          $5              $6
8
8
 
9
9
VICEVERSION=$1
10
10
PREFIX=$2
11
 
ZIPKIND=$3
12
 
X64SC=$4
13
 
TOPSRCDIR=$5
 
11
ENABLEARCH=$3
 
12
ZIPKIND=$4
 
13
X64SC=$5
 
14
TOPSRCDIR=$6
14
15
 
15
16
if test x"$PREFIX" != "x/usr/local"; then
16
17
  echo Error: installation path is not /usr/local
23
24
  SCFILE=""
24
25
fi
25
26
 
26
 
EMULATORS="x64 x64dtv $SCFILE x128 xcbm2 xpet xplus4 xvic"
 
27
EMULATORS="x64 x64dtv $SCFILE x128 xcbm2 xcbm5x0 xpet xplus4 xvic vsid"
27
28
CONSOLE_TOOLS="c1541 cartconv petcat"
28
29
EXECUTABLES="$EMULATORS $CONSOLE_TOOLS"
29
30
 
56
57
freeze vice-$VICEVERSION-qnx4.tar
57
58
rm -f install_msg
58
59
echo QNX 4 port binary distribution directory generated as vice-$VICEVERSION-qnx4.tar.F
 
60
if test x"$ENABLEARCH" = "xyes"; then
 
61
  echo Warning: binaries are optimized for your system and might not run on a different system, use --enable-arch=no to avoid this
 
62
fi