From b0ecbe7b89bb1bdb2f2ac62a9d46b2c93a1e19b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Fri, 3 Dec 2010 19:21:08 +0100 Subject: [PATCH] Add version when packaging and update INSTALL --- INSTALL | 2 +- tools/package.sh | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/INSTALL b/INSTALL index 0ba697d..a1fdb2d 100644 --- a/INSTALL +++ b/INSTALL @@ -13,7 +13,7 @@ php5 ** Compilation of extra libraries ** -lib is not included by default and must be downloaded into download section +lib is not included by default and must be downloaded http://indefero.soutade.fr/p/kisscount/downloads/ cd lib/wxsqlite3-1.9.9 ./configure diff --git a/tools/package.sh b/tools/package.sh index 668e2cf..fba1944 100755 --- a/tools/package.sh +++ b/tools/package.sh @@ -2,7 +2,8 @@ DATE=`date +%d.%m.%Y` ARCH=`uname -m` -DIR="KissCount_build_${DATE}_${ARCH}" +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 @@ -12,7 +13,7 @@ make clean fi make || (echo "Compilation failed" ; exit 1) mkdir -p $DIR/lib -cp -r lib/freechart/lib/* lib/wxsqlite3-1.9.9/lib/* $DIR/lib +cp -r lib/freechart/lib/*.so* lib/wxsqlite3-1.9.9/lib/*.so* $DIR/lib cp -r kc init.sql ressources tools/launch_kc.sh TODO CONTRIBUTORS COPYING README README.fr www $DIR find $DIR -type f -executable -exec strip \{\} \; tar -jcf $FILE $DIR