Commit ef805f0fb2ea317b12a9a9e20df372d8e86514df

Authored by perry.werneck@gmail.com
1 parent 293940b8

Ajustando arquivo .nsi para gerar pacote windows

Showing 3 changed files with 15 additions and 4 deletions   Show diff stats
po/pt_BR.po
... ... @@ -5,7 +5,7 @@ msgid ""
5 5 msgstr ""
6 6 "Project-Id-Version: pw3270 5.0\n"
7 7 "Report-Msgid-Bugs-To: \n"
8   -"POT-Creation-Date: 2012-09-13 08:07-0300\n"
  8 +"POT-Creation-Date: 2012-09-13 08:45-0300\n"
9 9 "PO-Revision-Date: 2012-09-05 09:05-0300\n"
10 10 "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n"
11 11 "Language-Team: Português do Brasil <>\n"
... ...
pw3270.cbp
... ... @@ -52,6 +52,7 @@
52 52 <Unit filename="autogen.sh" />
53 53 <Unit filename="colors.conf" />
54 54 <Unit filename="configure.ac" />
  55 + <Unit filename="debian.rules" />
55 56 <Unit filename="pw3270.nsi.in" />
56 57 <Unit filename="pw3270.spec.in" />
57 58 <Unit filename="src\include\lib3270.h" />
... ...
pw3270.nsi.in
... ... @@ -109,8 +109,17 @@ SubSection &quot;@PACKAGE@&quot; SecMain
109 109  
110 110 sectionEnd
111 111  
112   -#
113   -# SubSection "Plugins" SecPLugin
  112 + SubSection "Plugins" SecPLugin
  113 +
  114 + Section /o "HLLAPI" HLLAPIPlugin
  115 + setOutPath $INSTDIR
  116 +
  117 + CreateDirectory "$INSTDIR\plugins"
  118 + file "/oname=$INSTDIR\plugins\remotectl.dll" ".bin\Release\plugins\remotectl.dll"
  119 + file "/oname=$SYSDIR\libhllapi.dll" ".bin\Release\libhllapi.dll"
  120 +
  121 + sectionEnd
  122 +
114 123 #
115 124 # Section /o "Rexx" RexxPlugin
116 125 # setOutPath $INSTDIR
... ... @@ -124,7 +133,7 @@ SubSection &quot;@PACKAGE@&quot; SecMain
124 133 #
125 134 # sectionEnd
126 135 #
127   -SubSectionEnd
  136 + SubSectionEnd
128 137  
129 138 Section /o "GTK+ Runtime" SecGTK
130 139  
... ... @@ -180,6 +189,7 @@ section &quot;Uninstall&quot;
180 189 # Delete System libraries
181 190 delete $SYSDIR\lib3270.dll.@PACKAGE_VERSION@
182 191 delete $SYSDIR\libpw3270.dll.@PACKAGE_VERSION@
  192 + delete $SYSDIR\libhllapi.dll
183 193  
184 194 # Delete extension libraries
185 195 # delete $PROGRAMFILES\ooRexx\rx3270.dll
... ...