Overview
Comment: | Updated usage in OSX build script |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 473fc401e374ba92a056e1b22ab811773bfe75a2 |
User & Date: | kvanals on 2010-07-12 22:50:11 |
Other Links: | manifest | tags |
Context
2010-07-13
| ||
01:13 | Updated PackageMaker Build Documents to set permissions correctly check-in: 22e587bc6b user: kvanals tags: trunk | |
2010-07-12
| ||
22:50 | Updated usage in OSX build script check-in: 473fc401e3 user: kvanals tags: trunk | |
22:44 | Fixed typos in PackageMaker build templates. check-in: 16ca59a5a2 user: kvanals tags: trunk | |
Changes
Modified build/cackey_osx_build/build_osx.sh from [622c712f8a] to [5933946138].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
#!/bin/bash # Shell Script to make Mac OS X Releases of CACKey # Kenneth Van Alstyne # kenneth.l.vanalstyne@usace.army.mil # 20100711 # Usage function usage() { echo "Usage: build_osx.sh <target>" echo Where target is one of: echo " panther - (Builds 10.3 Library for PPCG3)" echo " tiger - (Builds Universal 10.4 Library for PPCG3/i386)" echo " leopard - (Builds Universal 10.5 Library for PPCG4/i386)" echo " snowleopard - (Builds Universal 10.6 Library for i386/x86_64)" echo " all - (Builds for all supported targets)" echo " clean - (Cleans up)" echo "Run from CACKey Build Root." echo "CACKey Build Root Directory MUST be named 'cackey'" exit $? } # Clean up function clean() { rm -rf macbuild make distclean |
| < |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#!/bin/bash
# Shell Script to make Mac OS X Releases of CACKey
# Kenneth Van Alstyne
# kenneth.l.vanalstyne@usace.army.mil
# 20100712
# Usage function
usage() {
echo "Usage: build_osx.sh <target>"
echo Where target is one of:
echo " panther - (Builds 10.3 Library for PPCG3)"
echo " tiger - (Builds Universal 10.4 Library for PPCG3/i386)"
echo " leopard - (Builds Universal 10.5 Library for PPCG4/i386)"
echo " snowleopard - (Builds Universal 10.6 Library for i386/x86_64)"
echo " all - (Builds for all supported targets)"
echo " clean - (Cleans up)"
echo "Run from CACKey Build Root."
exit $?
}
# Clean up function
clean() {
rm -rf macbuild
make distclean
|