#!/usr/bin/env bash # # This script requires an installed 'Iceberg' # # Usage: # # Build a lazarus dmg: # ./create_lazarus_dmg.sh # # This will setup a lazarus package in ~/tmp/buildlaz # run 'freeze' of Iceberg and create the dmg. # # To edit the Iceberg configuration 'lazarus.packproj', run # ./create_lazarus_dmg.sh edit # This will create ~/tmp/buildlaz/lazarus.packproj. Open the file with Iceberg. # When changed, save the file. Copy it back to the lazarus sources: # cp ~/tmp/buildlaz/lazarus.packproj /tools/install/macosx/lazarus_release.packproj.template # # The script will replace the following in the lazarus.packproj: # _LAZVERSION_ with $LazVersion # _DATESTAMP_ with $DATESTAMP # 18273645 with $LAZMAJORVERSION # 45362718 with $LAZMINORVERSION set -e set -x HDIUTIL=/usr/bin/hdiutil LazVersionPostfix= if [ "$1" = "append-revision" ]; then LazVersionPostfix=$(../get_svn_revision_number.sh .) if [ -n "$LazVersionPostfix" ]; then LazVersionPostfix=.$LazVersionPostfix fi shift fi EditMode= if [ "$1" = "edit" ]; then EditMode=$1 shift fi PPCARCH=ppcppc ARCH=$(uname -p) if [ "$ARCH" = "i386" ]; then PPCARCH=ppc386 fi SVN=$(which svn) if [ ! -e "$SVN" ]; then SVN=/usr/local/bin/svn fi if [ ! -e "$SVN" ]; then SVN=/sw/bin/svn fi if [ ! -e "$SVN" ]; then echo "Cannot find a svn executable" exit 1 fi FREEZE=/usr/local/bin/freeze if [ ! -e "$FREEZE" ]; then FREEZE=/usr/bin/freeze fi if [ ! -e "$FREEZE" ]; then echo "Cannot find freeze" exit 1 fi cd ../../.. LAZSOURCEDIR=$(pwd) cd - cd .. LazVersion=$(./get_lazarus_version.sh) cd - LazRelease='0' # Iceberg only supports a major and a minor version number # convert 1.2.3 => 1.23 LAZMAJORVERSION=$(echo $LazVersion | sed -e 's/\..*//') LAZMINORVERSION=$(echo $LazVersion | sed -e 's/[^.]*\.//' -e 's/\.//g') COMPILER=$PP if [ -z "$COMPILER" ]; then COMPILER=$(which fpc) fi FPCARCH=$($COMPILER -iSP) FPCVERSION=$($COMPILER -iV) BUILDDIR=~/tmp/buildlaz ROOTDIR=$BUILDDIR/Root LAZBUILDDIR=$ROOTDIR/Developer/lazarus DATESTAMP=$(date +%Y%m%d) TEMPLATEDIR=$LAZSOURCEDIR/tools/install/macosx PACKPROJTEMPLATE=$TEMPLATEDIR/lazarus.packproj.template PACKPROJ=$BUILDDIR/lazarus.packproj MACOSX104LINKEROPTS="-k-macosx_version_min -k10.4 -XR/Developer/SDKs/MacOSX10.4u.sdk/" # copy sources rm -rf $BUILDDIR mkdir -p $ROOTDIR/Developer $SVN export $LAZSOURCEDIR $LAZBUILDDIR #cp $LAZSOURCEDIR/lazarus $LAZBUILDDIR/ #cp -R $LAZSOURCEDIR/lazarus.app $LAZBUILDDIR/ #mkdir -p $LAZBUILDDIR/tools/install/ #cp -R $LAZSOURCEDIR/tools/install/macosx $LAZBUILDDIR/tools/install/ #cp -R $LAZSOURCEDIR/images $LAZBUILDDIR/ cd $LAZBUILDDIR if [ ! -e tools/svn2revisioninc ]; then make tools PP=$COMPILER OPT="$MACOSX104LINKEROPTS" fi ./tools/svn2revisioninc $LAZSOURCEDIR ide/revision.inc make bigide PP=$COMPILER USESVN2REVISIONINC=0 OPT="$MACOSX104LINKEROPTS" # make non-default LCL platforms make LCL_PLATFORM=gtk PP=$COMPILER lcl make LCL_PLATFORM=gtk2 OPT="-dUseX" PP=$COMPILER lcl # cross compile units? if [ -n "$CROSSCOMPILER" ]; then make lcl CPU_TARGET=powerpc PP=$CROSSCOMPILER make lcl CPU_TARGET=powerpc LCL_PLATFORM=gtk PP=$CROSSCOMPILER make lcl CPU_TARGET=powerpc LCL_PLATFORM=gtk2 OPT="-dUseX" PP=$CROSSCOMPILER make -C packager/registration CPU_TARGET=powerpc PP=$CROSSCOMPILER make -C ideintf CPU_TARGET=powerpc PP=$CROSSCOMPILER make -C components/synedit CPU_TARGET=powerpc PP=$CROSSCOMPILER make -C components/codetools CPU_TARGET=powerpc PP=$CROSSCOMPILER fi # clean up strip lazarus strip startlazarus strip lazbuild find $BUILDDIR -name '.svn' -exec rm -rf {} \; || true find $BUILDDIR -name '.DS_Store' -exec rm -rf {} \; || true # create symlinks mkdir -p $ROOTDIR/usr/local/bin cd $ROOTDIR/usr/local/bin ln -s /Developer/lazarus/lazbuild lazbuild cp $TEMPLATEDIR/uninstall.sh $ROOTDIR/Developer/lazarus/ # create /Applications/Lazarus.app alias mkdir -p $ROOTDIR/Applications ln -s /Developer/lazarus/lazarus.app $ROOTDIR/Applications/Lazarus.app # fix permissions # everyone can read, group can write find $BUILDDIR -exec chmod a+r,g+w {} \; # what is executable should be executable by everyone find $BUILDDIR -perm +o+x -exec chmod a+x {} \; # everyone can access directories find $BUILDDIR -type d -exec chmod a+x {} \; # create etc mkdir -p $ROOTDIR/etc/lazarus cat $TEMPLATEDIR/environmentoptions.xml | sed \ -e "s|_PPCARCH_|$PPCARCH|g" \ > $ROOTDIR/etc/lazarus/environmentoptions.xml # fill in packproj template. if [ -n "$EditMode" ]; then # edit mode => do not touch the template # and allow user to edit the lazarus.packproj file via Iceberg cp $PACKPROJTEMPLATE $PACKPROJ set +x echo "" echo "EDIT MODE:" echo " You can now open $PACKPROJ with Iceberg" echo " When you did your changes, close the project in Iceberg" echo " copy the file back with" echo echo cp $PACKPROJ $PACKPROJTEMPLATE echo echo " Then run the script again." exit 0 fi cat $PACKPROJTEMPLATE | sed \ -e "s|_LAZVERSION_|$LazVersion|g" \ -e "s|_DATESTAMP_|$DATESTAMP|g" \ -e "s/18273645/$LAZMAJORVERSION/g" \ -e "s/45362718/$LAZMINORVERSION/g" \ > $PACKPROJ # build package cd $BUILDDIR $FREEZE -v $PACKPROJ DMGFILE=~/tmp/lazarus-$LazVersion$LazVersionPostfix-$DATESTAMP-$FPCARCH-macosx.dmg rm -rf $DMGFILE $HDIUTIL create -anyowners -volname lazarus-$LazVersion$LazVersionPostfix \ -imagekey zlib-level=9 -format UDZO -srcfolder $BUILDDIR/build $DMGFILE set +x echo The new dmg file is $DMGFILE #end.