Changeset 312


Ignore:
Timestamp:
11/05/06 12:41:07 (17 years ago)
Author:
Nicholas Riley
Message:

package-launch.sh: fix install usage to properly create man directory and set permissions on man page; remove mentions of .dmg packaging.

File:
1 edited

Legend:

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

    r305 r312  
    88xcodebuild -configuration Deployment DSTROOT=/ "INSTALL_PATH=$PWD" install && \
    99SetFile -c 'R*ch' -t 'TEXT' README VERSION launch.1 && \
    10 sudo /usr/bin/install -c launch /usr/local/bin && \
    11 sudo /usr/bin/install -c launch.1 /usr/local/man/man1 && \
     10sudo /usr/bin/install -d /usr/local/bin /usr/local/man/man1 && \
     11sudo /usr/bin/install launch /usr/local/bin && \
     12sudo /usr/bin/install -m 644 launch.1 /usr/local/man/man1 && \
    1213chmod 755 launch && \
    1314chmod 644 launch.1 && \
    1415VERSION=`cat VERSION` TARBALL="launch-$VERSION.tar.gz" && \
    1516cd .. && \
    16 rm -f launch-$VERSION $TARBALL $DMG && \
     17rm -f launch-$VERSION $TARBALL && \
    1718ln -s launch launch-$VERSION && \
    1819tar --owner=root --group=wheel --exclude=.DS_Store --exclude=.svn --exclude=.gdb_history --exclude=build --exclude=\*.mode2 --exclude=\*.pbxuser --exclude=\*.perspective -zchf launch-$VERSION.tar.gz launch-$VERSION && \
    19 scp $TARBALL ainaz:web/nriley/software/ #$DMG
     20scp $TARBALL ainaz:web/nriley/software/
    2021:
Note: See TracChangeset for help on using the changeset viewer.