Last change
on this file since 527 was 305, checked in by Nicholas Riley, 18 years ago |
VERSION: Updated for 1.1b1.
main.c: Updated for 1.1b1.
launch.xcodeproj: Don't try to prebind since the attempt gets ignored
anyway.
package-launch.sh: Exclude more useless things instead of
ineffectively deleting them.
Note: man page is out of date, needs updating before 1.1 is released.
|
File size:
834 bytes
|
Line | |
---|
1 | #!/bin/zsh
|
---|
2 |
|
---|
3 | set -x -v
|
---|
4 |
|
---|
5 | cd launch && \
|
---|
6 | find . -name \*~ -exec rm '{}' \; && \
|
---|
7 | xcodebuild -configuration Deployment clean && \
|
---|
8 | xcodebuild -configuration Deployment DSTROOT=/ "INSTALL_PATH=$PWD" install && \
|
---|
9 | SetFile -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 && \
|
---|
12 | chmod 755 launch && \
|
---|
13 | chmod 644 launch.1 && \
|
---|
14 | VERSION=`cat VERSION` TARBALL="launch-$VERSION.tar.gz" && \
|
---|
15 | cd .. && \
|
---|
16 | rm -f launch-$VERSION $TARBALL $DMG && \
|
---|
17 | ln -s launch launch-$VERSION && \
|
---|
18 | tar --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
|
---|
20 | :
|
---|
Note:
See
TracBrowser
for help on using the repository browser.