source: trunk/appswitch/package-appswitch.sh@ 100

Last change on this file since 100 was 93, checked in by Nicholas Riley, 21 years ago

appswitch 1.0b1

File size: 1.4 KB
Line 
1#!/bin/sh
2
3set -x -v
4
5cd appswitch && \
6find . -name \*~ -exec rm '{}' \; && \
7pbxbuild && \
8SetFile -c 'R*ch' -t 'TEXT' README VERSION && \
9strip build/appswitch && \
10sudo /usr/bin/install -c build/appswitch /usr/local/bin && \
11sudo /usr/bin/install -c appswitch.1 /usr/local/man/man1 && \
12rm -rf build/appswitch.build build/intermediates build/.gdb_history && \
13VERSION=`cat VERSION` TARBALL="appswitch-$VERSION.tar.gz" && \
14DMG="appswitch-$VERSION.dmg" VOL="appswitch $VERSION" MOUNTPOINT="/Volumes/$VOL" && \
15cd .. && \
16rm -f appswitch-$VERSION $TARBALL $DMG && \
17ln -s appswitch appswitch-$VERSION && \
18tar --exclude=.DS_Store --exclude=.svn -zchf appswitch-$VERSION.tar.gz appswitch-$VERSION && \
19#hdiutil create $DMG -megabytes 5 -ov -type UDIF && \
20#DISK=`hdid $DMG | sed -ne ' /Apple_partition_scheme/ s|^/dev/\([^ ]*\).*$|\1|p'` && \
21#newfs_hfs -v "$VOL" /dev/r${DISK}s2 && \
22#hdiutil eject $DISK && \
23#hdid $DMG && \
24#ditto -rsrc launch "$MOUNTPOINT" && \
25#ditto -rsrc "InstallAnywhere/launch_Web_Installers/InstData/MacOSX/Install launch $VERSION.sit" "/Volumes/launch $VERSION" && \
26#launch "$MOUNTPOINT/Install launch $VERSION.sit" && \
27#./openUp "$MOUNTPOINT" && \
28#sleep 2 && \
29## hdiutil eject $DISK && \ # this doesn't work
30#osascript -e "tell application \"Finder\" to eject disk \"$VOL\"" && \
31#hdiutil convert $DMG -format UDZO -o z$DMG && \
32#mv z$DMG $DMG && \
33scp $TARBALL ainaz:web/nriley/software/ #$DMG
34:
Note: See TracBrowser for help on using the repository browser.