Artifact ba9acb7d77420fea1dee30625b50d842369b73b4:
- Executable file
build/cackey_osx_build/build_osx.sh
— part of check-in
[284fc537fc]
at
2010-07-22 07:45:00
on branch trunk
— Updated OSX CACKey build script to support more descriptive package names.
Updated PackageMaker Document XML files for OSX CACKey build to be better formatted. (user: kvanals, size: 5576) [annotate] [blame] [check-ins using]
#!/bin/bash # Shell Script to make Mac OS X Releases of CACKey # Kenneth Van Alstyne # kenneth.l.vanalstyne@usace.army.mil # 20100712 CACKEY_VERSION=`cat configure.ac | grep AC_INIT | cut -d " " -f 2 | sed 's_)__'` # 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() { for PMDOC in build/cackey_osx_build/*_pmbuild.pmdoc/*.in; do PMDOC="`echo "${PMDOC}" | sed 's_.in__g'`" rm -f "${PMDOC}" done rm -f build/cackey_osx_build/cackey.dylib rm -rf macbuild make distclean } # Directory creation function makedir() { if [ ! -d macbuild ]; then mkdir macbuild mkdir macbuild/Panther mkdir macbuild/Tiger mkdir macbuild/Leopard mkdir macbuild/SnowLeopard mkdir macbuild/pkg fi if [ ! -f config.guess ]; then cp /Developer/usr/share/libtool/config.guess . fi if [ ! -f config.sub ]; then cp /Developer/usr/share/libtool/config.sub . fi if [ ! -f install-sh ]; then cp /Developer/usr/share/libtool/install-sh . fi } # Build function for Panther panther() { makedir HEADERS=/Developer/SDKs/MacOSX10.3.9.sdk/System/Library/Frameworks/PCSC.framework/Versions/A/Headers/ LIBRARY=/Developer/SDKs/MacOSX10.3.9.sdk/System/Library/Frameworks/PCSC.framework/PCSC OSX=Panther HOST=powerpc-apple-darwin7 make distclean ARCH="ppc -mcpu=G3" CFLAGS="-arch ${ARCH}" ./configure --with-pcsc-headers=${HEADERS} --with-pcsc-libs=${LIBRARY} --host=${HOST} make cp libcackey.dylib macbuild/${OSX}/libcackey.dylib cp libcackey_g.dylib macbuild/${OSX}/libcackey_g.dylib pkgbuild } # Build function for Tiger tiger() { makedir HEADERS=/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/PCSC.framework/Versions/A/Headers/ LIBRARY=/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/PCSC.framework/PCSC LIB="" ARCHLIST="" DLIB="" DARCHLIST="" OSX=Tiger for HOST in powerpc-apple-darwin8 i386-apple-darwin8; do genbuild done libbuild pkgbuild } # Build function for Leopard leopard() { makedir HEADERS=/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/PCSC.framework/Versions/A/Headers/ LIBRARY=/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/PCSC.framework/PCSC LIB="" ARCHLIST="" DLIB="" DARCHLIST="" OSX=Leopard for HOST in powerpc-apple-darwin9 i386-apple-darwin9; do genbuild done libbuild pkgbuild } # Build function for Snow Leopard snowleopard() { makedir HEADERS=/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/PCSC.framework/Versions/A/Headers/ LIBRARY=/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/PCSC.framework/PCSC LIB="" ARCHLIST="" DLIB="" DARCHLIST="" OSX=SnowLeopard for HOST in i386-apple-darwin10 x86_64-apple-darwin10; do genbuild done libbuild pkgbuild } # Generic build function genbuild() { make distclean ARCH=`echo ${HOST} | cut -d "-" -f 1` if [ ${ARCH} == "powerpc" ]; then if [ ${OSX} == "Leopard" ]; then ARCH="ppc -mcpu=G4" else ARCH="ppc -mcpu=G3" fi fi CFLAGS="-arch ${ARCH}" ./configure --with-pcsc-headers=${HEADERS} --with-pcsc-libs=${LIBRARY} --host=${HOST} make cp libcackey.dylib macbuild/${OSX}/libcackey.dylib.`echo ${ARCH} | cut -d ' ' -f 1` cp libcackey_g.dylib macbuild/${OSX}/libcackey_g.dylib.`echo ${ARCH} | cut -d ' ' -f 1` } # Library build function libbuild() { for LIB in macbuild/${OSX}/libcackey.dylib.*; do ARCHLIST="${ARCHLIST} `echo '-arch '` `echo ${LIB} | cut -d . -f 3` `echo ' '` `echo ${LIB}`" done lipo -create ${ARCHLIST} -output macbuild/${OSX}/libcackey.dylib for DLIB in macbuild/${OSX}/libcackey_g.dylib.*; do DARCHLIST="${DARCHLIST} `echo '-arch '` `echo ${DLIB} | cut -d . -f 3` `echo ' '` `echo ${DLIB}`" done lipo -create ${DARCHLIST} -output macbuild/${OSX}/libcackey_g.dylib rm macbuild/${OSX}/libcackey*.dylib.* } # Function to build Mac OS X Packages pkgbuild() { rm -f build/cackey_osx_build/cackey.dylib ln macbuild/${OSX}/libcackey.dylib build/cackey_osx_build/cackey.dylib for PMDOC in build/cackey_osx_build/${OSX}_pmbuild.pmdoc/*.in; do PMDOC="`echo "${PMDOC}" | sed 's_.in__g'`" sed "s|@@BUILDROOTDIR@@|$(pwd)|g" ${PMDOC}.in > ${PMDOC} done if [ ${OSX} == "Panther" ]; then EXT=mpkg else EXT=pkg fi /Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -d build/cackey_osx_build/${OSX}_pmbuild.pmdoc -o macbuild/pkg/CACKey_${CACKEY_VERSION}_${OSX}.${EXT} tar --create --directory macbuild/pkg/ --file macbuild/pkg/CACKey_${CACKEY_VERSION}_${OSX}.${EXT}.tar CACKey_${CACKEY_VERSION}_${OSX}.${EXT} gzip -9 macbuild/pkg/CACKey_${CACKEY_VERSION}_${OSX}.${EXT}.tar rm -rf macbuild/pkg/CACKey_${CACKEY_VERSION}_${OSX}.${EXT} rm -f build/cackey_osx_build/cackey.dylib echo "${OSX} build complete" } # Take command line arguments and execute case "$1" in "") usage exit $? ;; "panther") ./autogen.sh panther exit $? ;; "tiger") ./autogen.sh tiger exit $? ;; "leopard") ./autogen.sh leopard exit $? ;; "snowleopard") ./autogen.sh snowleopard exit $? ;; "all") ./autogen.sh panther tiger leopard snowleopard exit $? ;; "clean") clean exit $? ;; *) usage exit $? ;; esac