DevFAQNSISDictionaryInstallers
From AbiWiki
(Difference between revisions)
m (Reverted edits by Unotefuca (Talk) to last revision by Maintenance script) |
|||
Line 1: | Line 1: | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | + | <H2>NSIS Dictionary Installers</H2> | |
==== How do I create the NSIS dictionary installers?
==== | ==== How do I create the NSIS dictionary installers?
==== | ||
- | You''ll need NSIS | + | You''ll need NSIS >=2.07 installed and the abispell module from CVS. Once you have those prerequisites, just run "makensis.exe [[DictionaryLanguage|DictionaryLanguage]].nsi" from abi\src\pkg\win\setup. To create all of the installers, use a simple shell script like the following: |
- | + | <verbatim> | |
for file in Dictionary*.nsi | for file in Dictionary*.nsi | ||
do | do | ||
makensis.exe $file | makensis.exe $file | ||
done | done | ||
- | + | </verbatim> | |
[[Category:To Convert]] | [[Category:To Convert]] |
Current revision as of 13:18, 27 November 2010
NSIS Dictionary Installers
How do I create the NSIS dictionary installers?
Youll need NSIS >=2.07 installed and the abispell module from CVS. Once you have those prerequisites, just run "makensis.exe DictionaryLanguage.nsi" from abi\src\pkg\win\setup. To create all of the installers, use a simple shell script like the following:
<verbatim> for file in Dictionary*.nsi do makensis.exe $file done </verbatim>