Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2016-01-09 23:15:08 +0300
committerEion Robb <eion@robbmob.com>2016-01-09 23:15:08 +0300
commit2b258e74beaeef18b881c91662a04f78f79eadcc (patch)
tree08190d825e7700b759a061897b28e4dcf71c2956
parentb94ea28fa9fcde48018ffd5c957f21313455bd32 (diff)
Make variables optional in the installer so we can specify them from Makefile's
-rw-r--r--skypeweb/pidgin-skypeweb.nsi7
1 files changed, 7 insertions, 0 deletions
diff --git a/skypeweb/pidgin-skypeweb.nsi b/skypeweb/pidgin-skypeweb.nsi
index d94e58f..b41ab26 100644
--- a/skypeweb/pidgin-skypeweb.nsi
+++ b/skypeweb/pidgin-skypeweb.nsi
@@ -5,12 +5,19 @@ SetCompress off
; todo: SetBrandingImage
; HM NIS Edit Wizard helper defines
+!ifndef PRODUCT_NAME
!define PRODUCT_NAME "pidgin-skypeweb"
+!endif
+!ifndef PRODUCT_VERSION
!define PRODUCT_VERSION "v1.1"
+!endif
!define PRODUCT_PUBLISHER "Eion Robb"
!define PRODUCT_WEB_SITE "http://eion.robbmob.com/"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
+!ifndef JSON_GLIB_DLL
+!define JSON_GLIB_DLL "libjson-glib-1.0.dll"
+!endif
; MUI 1.67 compatible ------
!include "MUI.nsh"