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