osx-build.sh revision d6019413087dd4fd1e168a477c909d931005a37a
#
# Inkscape compilation and packaging script for Mac OS X
#
# Please see
# for more complete information
#
# Author:
# Jean-Olivier Irisson <jo.irisson@gmail.com>
# with information from
# Kees Cook
# Michael Wybrow
#
# Copyright 2006
# Licensed under GNU General Public License
#
############################################################
# User modifiable parameters
#----------------------------------------------------------
# Configure flags
CONFFLAGS="--disable-static --enable-shared --enable-osxapp"
# Libraries prefix
############################################################
# Help message
#----------------------------------------------------------
help()
{
echo -e "
Compilation script for Inkscape on Mac OS X.
\033[1mUSAGE\033[0m
$0 [options] action[s]
\033[1mACTIONS & OPTIONS\033[0m
\033[1mh,help\033[0m
display this help message
\033[1mu,up,update\033[0m
update an existing checkout from svn (run svn up)
\033[1ma,auto,autogen\033[0m
prepare configure script (run autogen.sh). This is only necessary
for a fresh svn checkout or after make distclean.
\033[1mc,conf,configure\033[0m
configure the build (run configure). Edit your configuration
options in $0
\033[1m-p,--prefix\033[0m specify install prefix (configure step only)
\033[1mb,build\033[0m
build Inkscape (run make)
\033[1mi,install\033[0m
install the build products locally, inside the source
directory (run make install)
\033[1mp,pack,package\033[0m
package Inkscape in a double clickable .app bundle and
store it in a .dmg image for distribution
\033[1m-s,--strip\033[0m remove debugging information in Inkscape package
\033[1m-py,--with-python\033[0m specify python packages path for inclusion into the dmg image
\033[1mEXAMPLES\033[0m
\033[1m$0 conf build install\033[0m
configure, build and install a dowloaded version of Inkscape in the default
directory, keeping debugging information.
\033[1m$0 -p ~ -s -py ~/pyxml/ u a c b i p\033[0m
update an svn checkout, prepare configure script, configure,
build and install Inkscape in the user home directory.
Then package Inkscape withouth debugging information,
with python packages from ~/pyxml/ and prepare it for
distribution."
}
# Parameters
#----------------------------------------------------------
# Paths
HERE=`pwd`
# Defaults
SVNUPDATE="f"
AUTOGEN="f"
CONFIGURE="f"
BUILD="f"
INSTALL="f"
PACKAGE="f"
STRIP="f"
PYTHON="f"
# Parse command line options
#----------------------------------------------------------
while [ "$1" != "" ]
do
case $1 in
h|help)
exit 1 ;;
SVNUPDATE="t" ;;
AUTOGEN="t" ;;
CONFIGURE="t" ;;
b|build)
BUILD="t" ;;
i|install)
INSTALL="t" ;;
PACKAGE="t" ;;
# -p|--prefix)
#INSTALLPREFIX=$2
#shift 1 ;;
-s|-strip)
STRIP="t" ;;
PYTHON="t"
PYTHONDIR=$2
shift 1 ;;
esac
shift 1
done
# Set environment variables
# ----------------------------------------------------------
export LIBPREFIX
# Specific environment variables
# automake seach path
export CPATH="$LIBPREFIX/include"
# configure search path
export CPPFLAGS="-I$LIBPREFIX/include"
export LDFLAGS="-L$LIBPREFIX/lib"
# compiler arguments
export CFLAGS="-O3 -Wall"
# add X11 executables and libraries [does not seem to be required now]
# pkgconfig path [does not seem to be required either]
# Actions
# ----------------------------------------------------------
if [[ "$SVNUPDATE" == "t" ]]
then
cd $SRCROOT
cd $HERE
fi
if [[ "$AUTOGEN" == "t" ]]
then
cd $SRCROOT
cd $HERE
fi
if [[ "$CONFIGURE" == "t" ]]
then
cd $SRCROOT
cd $HERE
fi
if [[ "$BUILD" == "t" ]]
then
cd $SRCROOT
cd $HERE
fi
if [[ "$INSTALL" == "t" ]]
then
cd $SRCROOT
cd $HERE
fi
if [[ "$PACKAGE" == "t" ]]; then
if [[ "$STRIP" == "t" ]]; then
STRIPPARAM="-s"
else
STRIPPARAM=""
fi
if [[ "$PYTHON" == "t" ]]; then
else
fi
# Prepare information file
GTK `pkg-config --modversion gtk+-2.0`
GTKmm `pkg-config --modversion gtkmm-2.4`
Cairo `pkg-config --modversion cairo`
Cairomm `pkg-config --modversion cairomm-1.0`
CairoPDF `pkg-config --modversion cairo-pdf`
Pango `pkg-config --modversion pango`
Configure options:
if [[ "$STRIP" == "t" ]]; then
echo "Debug info
no" >> $INFOFILE
else
echo "Debug info
yes" >> $INFOFILE
fi
# open a Finder window here
open .
fi
exit 0