[tuxdroid-svn] r4717 - software_suite_v3/smart-core/smart-api/python/trunk
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-06-01 10:11:14
|
Author: remi
Date: 2009-06-01 12:11:08 +0200 (Mon, 01 Jun 2009)
New Revision: 4717
Modified:
software_suite_v3/smart-core/smart-api/python/trunk/installer.nsi
Log:
* added version in the compiled installer file name
* added filter on *pyc and *.svn on installer creation
Modified: software_suite_v3/smart-core/smart-api/python/trunk/installer.nsi
===================================================================
--- software_suite_v3/smart-core/smart-api/python/trunk/installer.nsi 2009-06-01 10:04:55 UTC (rev 4716)
+++ software_suite_v3/smart-core/smart-api/python/trunk/installer.nsi 2009-06-01 10:11:08 UTC (rev 4717)
@@ -7,7 +7,7 @@
!define PRODUCT_VERSION "0.3.0"
; Output names
-!define FINAL_INSTALLER_EXE "pySmartAPIInstaller.exe"
+!define FINAL_INSTALLER_EXE "pySmartAPIInstaller_${PRODUCT_VERSION}.exe"
!define UNINSTALLER_EXE "pySmartAPIUninstaller.exe"
; The name of the installer
@@ -56,7 +56,7 @@
; Write the files
CreateDirectory "$TUXDROID_PYTHON_PATH\Lib\site-packages\tuxisalive"
SetOutPath "$TUXDROID_PYTHON_PATH\Lib\site-packages\tuxisalive"
- File /r tuxisalive\*
+ File /r /x *.pyc /x *.svn tuxisalive\*
CreateDirectory "$TUXDROID_PATH\resources\images"
SetOutPath "$TUXDROID_PATH\resources\images"
|