Ignore:
Timestamp:
04/04/05 00:22:09 (19 years ago)
Author:
Nicholas Riley
Message:

VERSION: Updated for 1.0.1.

main.c: Updated copyright statement. Updated for 1.0.1. Added -U,
triggers OPTS.forceURLs. Added kLSMultipleSessionsNotSupportedErr,
nsvErr. Cleaned up string encoding handling; works much better now.
Split code into stringFromURLIsRemote, utf8StringFromCFStringRef, and
utf8StringFromOSType. Display "contents: zero items" instead of "0
items" in printMoreInfoForURL. Remove extraneous "./" at beginning of
displayed paths. Get versions of non-{applications, packages} and
info from nonbundled apps with CFBundleCopyInfoDictionaryForURL.
Replaced some error codes with numbers so we support building on 10.2
again.

launch.1: Updated for 1.0.1 and -U option.

README: Updated for 1.0.1. Fixed a paste-o in the uninstallation
instructions.

package-launch.sh: Use zsh explicitly. Build as deployment. Fix
permissions. Make tarball contents owned by root/wheel.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/launch/package-launch.sh

    r149 r166  
    1 #!/bin/sh
     1#!/bin/zsh
    22
    33set -x -v
     
    55cd launch && \
    66find . -name \*~ -exec rm '{}' \; && \
    7 xcodebuild && \
     7xcodebuild -buildstyle Deployment && \
    88SetFile -c 'R*ch' -t 'TEXT' README VERSION launch.1 && \
    99strip build/launch && \
    1010sudo /usr/bin/install -c build/launch /usr/local/bin && \
    1111sudo /usr/bin/install -c launch.1 /usr/local/man/man1 && \
     12chmod 755 build/launch && \
     13chmod 644 launch.1 && \
    1214rm -rf build/launch.build build/intermediates build/.gdb_history && \
    1315VERSION=`cat VERSION` TARBALL="launch-$VERSION.tar.gz" && \
     
    1618rm -f launch-$VERSION $TARBALL $DMG && \
    1719ln -s launch launch-$VERSION && \
    18 tar --exclude=.DS_Store --exclude=.svn --exclude=.gdb_history -zchf launch-$VERSION.tar.gz launch-$VERSION && \
     20tar --owner=root --group=wheel --exclude=.DS_Store --exclude=.svn --exclude=.gdb_history -zchf launch-$VERSION.tar.gz launch-$VERSION && \
    1921#hdiutil create $DMG -megabytes 5 -ov -type UDIF && \
    2022#DISK=`hdid $DMG | sed -ne ' /Apple_partition_scheme/ s|^/dev/\([^ ]*\).*$|\1|p'` && \
Note: See TracChangeset for help on using the changeset viewer.