view packaging/linux-createpackage.sh.in @ 1138:45de97d43e13

Implemented generic include mechanism.
author Sascha Wilde <wilde@intevation.de>
date Wed, 17 Sep 2014 17:20:23 +0200
parents cf154e1f687a
children a72d59f8c3ea
line wrap: on
line source
#!/bin/bash
# Copyright (C) 2014 by Bundesamt f�r Sicherheit in der Informationstechnik
# Software engineering by Intevation GmbH
#
# This file is Free Software under the GNU GPL (v>=2)
# and comes with ABSOLUTELY NO WARRANTY!
# See LICENSE.txt for details.

process_includes()
{
  # Process include statements of the form:
  # ###INCLUDE:filename
  # in the file given as $1
  # the path given as $2, it is used as base path for the included files.

  local file="$1"
  local include_base="$2"

  local inc_directive
  while [ "${inc_directive:=`grep '^###INCLUDE:' "$file" | head -1`}" ] ; do
    local include_file="${inc_directive#'###INCLUDE:'}"
    sed -i "/${inc_directive}/r ${include_base}/${include_file}" "$file"
    sed -i "/${inc_directive}/d" "$file"
    inc_directive=""
  done
}


TMPDIR=$(mktemp -d)
TMPSHAR=$(mktemp "@CMAKE_BINARY_DIR@/shar.XXXXXXXXXX")

ARCH="$1"

if [ "$ARCH" != "i386" -a "$ARCH" != "x86_64" ]; then
    echo "Usage $0 <architecture>"
    echo "with archtiecture either i386 or x86_64"
    echo "defaulting to x86_64"
    ARCH=x86_64
fi

INSTALLER="@CMAKE_BINARY_DIR@/TrustBridge-@PROJECT_VERSION@.sh"

EXEFILES=("@CMAKE_BINARY_DIR@/cinst/cinst"
          "@CMAKE_BINARY_DIR@/cinst/mozilla"
          "@CMAKE_BINARY_DIR@/ui/trustbridge"
          "@CMAKE_BINARY_DIR@/ui/trustbridge-tray-starter.sh")

ICON="@CMAKE_SOURCE_DIR@/ui/img/logo-128.png"
HELPFILES=$(find @CMAKE_BINARY_DIR@/manuals/help-manual/html \
    -maxdepth 1 -type f -printf "%p \n")
HELPFILES_STATIC=$(find @CMAKE_BINARY_DIR@/manuals/help-manual/html/_static \
    -maxdepth 1 -type f -printf "%p \n")
HELPFILES_IMG=$(find @CMAKE_BINARY_DIR@/manuals/help-manual/html/_images \
    -maxdepth 1 -type f -printf "%p \n")
HELPFILES_SOURCES=$(find @CMAKE_BINARY_DIR@/manuals/help-manual/html/_sources \
    -maxdepth 1 -type f -printf "%p \n")

# Make installation in TMPDIR, this is what we will put into the
# shar-archive.
echo "Using $TMPDIR for temporary installation to build installer..."
install -d "$TMPDIR/bin"
install -d "$TMPDIR/share/pixmaps/trustbridge"
install -d "$TMPDIR/share/doc/trustbridge"
install -d "$TMPDIR/share/doc/trustbridge/_static"
install -d "$TMPDIR/share/doc/trustbridge/_sources"
install -d "$TMPDIR/share/doc/trustbridge/_images"
install "${EXEFILES[@]}" "$TMPDIR/bin"
install "$ICON" "$TMPDIR/share/pixmaps/trustbridge/trustbridge.png"

echo "Building $INSTALLER..."
cp "@CMAKE_BINARY_DIR@/packaging/linux-installer.inc" "$INSTALLER"
process_includes "$INSTALLER" "@CMAKE_BINARY_DIR@/packaging"

binnames=""
for file in "${EXEFILES[@]}" ; do
  binnames="`basename $file` $binnames"
done
for file in ${HELPFILES} ; do
  install "$file" "$TMPDIR/share/doc/trustbridge"
  helpnames="`basename $file` $helpnames"
done
for file in ${HELPFILES_IMG} ; do
  install "$file" "$TMPDIR/share/doc/trustbridge/_images"
  helpnames_img="`basename $file` $helpnames_img"
done
for file in ${HELPFILES_STATIC} ; do
  install "$file" "$TMPDIR/share/doc/trustbridge/_static"
  helpnames_static="`basename $file` $helpnames_static"
done
for file in ${HELPFILES_SOURCES}; do
  install "$file" "$TMPDIR/share/doc/trustbridge/_sources"
  helpnames_sources="`basename $file` $helpnames_sources"
done

echo "Creating shar archive ..."
cd "$TMPDIR"
shar -z -B `find -type f` | sed 's/^exit 0//' >>"$TMPSHAR"

sed -i "s/###BINNAMES###/${binnames}/" "$INSTALLER"
sed -i "s/###ICONNAME###/trustbridge.png/" "$INSTALLER"
sed -i "/###SHAR###/r $TMPSHAR" "$INSTALLER"
sed -i "s/###HELPNAMES###/${helpnames}/" "$INSTALLER"
sed -i "s/###HELPNAMES_SOURCES###/${helpnames_sources}/" "$INSTALLER"
sed -i "s/###HELPNAMES_STATIC###/${helpnames_static}/" "$INSTALLER"
sed -i "s/###HELPNAMES_IMG###/${helpnames_img}/" "$INSTALLER"
sed -i "s/###ARCH###/${ARCH}/" "$INSTALLER"

chmod +x "$INSTALLER"
echo "Signing"
"@CMAKE_SOURCE_DIR@/ui/tests/append-sig.sh" \
    "@CMAKE_SOURCE_DIR@/ui/tests/data/codesign/codesigning.key" \
    "$INSTALLER" "${INSTALLER}_signed"
mv "${INSTALLER}_signed" "$INSTALLER"

echo "Cleaning up..."
rm -r "$TMPDIR"
rm  "$TMPSHAR"

http://wald.intevation.org/projects/trustbridge/