view packaging/tmp-createpackage.sh @ 340:9001eaa55549

Add first draft of packaging to build upon
author Andre Heinecke <aheinecke@intevation.de>
date Wed, 09 Apr 2014 17:39:24 +0000
parents
children 35d6b371ba63
line wrap: on
line source
#!/bin/bash

#NSSDIR is hackish as this will be replaced by static compiling 
# anyway

NSSDIR="/home/andre/ubuntu/src/mxe/usr/i686-w64-mingw32.static/nss-3.12.7/bin/"
MYPATH=$(dirname `readlink -f $0`)

TMPDIR=$(mktemp -d)

EXEFILES=$(find . -name cinst.exe -o -name m13ui.exe -o -name mozilla.exe)

cp $NSSDIR/*.dll $TMPDIR
cp $EXEFILES $TMPDIR

echo $TMPDIR
makensis -Dfiles_dir=$TMPDIR \
    -Dcompany="Intevation GmbH" \
    -Dversion_number=0.0.0.1 \
    -Dsetupname="renameme.exe" \
    -Dproductname="Really please rename me" \
    -Dproductname_short="renameme" $MYPATH/renameme.nsi
rm -r $TMPDIR

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