diff --git a/tools/package.sh b/tools/package.sh index b0685a5..3649c25 100755 --- a/tools/package.sh +++ b/tools/package.sh @@ -1,7 +1,7 @@ #!/bin/bash DATE=`date +%d.%m.%Y` -ARCH=`${PREFIX}gcc -dumpmachine | cut -d- -f1` +[ -z "$ARCH" ] && ARCH=`${PREFIX}gcc -dumpmachine | cut -d- -f1` VERSION=`cat src/controller/KissCount.h | grep APP_VERSION | cut -d\" -f2` DIR="KissCount_build_${VERSION}_${DATE}_${ARCH}" FILE="$DIR.tar.bz2" diff --git a/tools/package_win32.sh b/tools/package_win32.sh new file mode 100755 index 0000000..2aba7d2 --- /dev/null +++ b/tools/package_win32.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +DATE=`date +%d.%m.%Y` +[ -z "$ARCH" ] && ARCH=`${PREFIX}gcc -dumpmachine | cut -d- -f1` +VERSION=`cat src/controller/KissCount.h | grep APP_VERSION | cut -d\" -f2` +DIR="KissCount_build_${VERSION}_${DATE}_${ARCH}" +FILE="$DIR.tar.bz2" + +rm -f "$FILE" +rm -rf "$DIR" +if [ "$1" == "clean" ] ; then +make clean +fi +make || (echo "Compilation failed" ; exit 1) +mkdir -p "$DIR" +cp -r lib/freechart/lib/*.dll* lib/wxsqlite3-1.9.9/lib/*.dll* "$DIR" +cp -r kc init.sql ressources tools/launch_kc.sh TODO CONTRIBUTORS COPYING README README.fr www "$DIR" +find "$DIR" -type f -executable -exec ${PREFIX}strip \{\} \; +tar -jcf "$FILE" "$DIR" +rm -rf "$DIR" +echo "Packaged into $FILE !" \ No newline at end of file