; This is a file for creating an installer for Abiword Dictionaries using NSIS ; by Alan Horkan ; modified by Michael D. Pritchett ; Do a Cyclic Redundancy Check to make sure the installer ; was not corrupted by the download. CRCCheck on ; set the compression algorithm used, zlib | bzip2 | lzma SetCompressor /SOLID lzma ; The name of the installer Name "AbiWord Dictionary - Brazilian" Icon "setup.ico" OutFile "AbiWord_Dictionary_Brazilian.exe" ; License Information LicenseText "This program is Licensed under the GNU General Public License (GPL)." "$(^NextBtn)" LicenseData "..\..\..\..\COPYING" ; The default installation directory InstallDir $PROGRAMFILES\AbiSuite2 ; Registry key to check for directory (so if you install again, it will overwrite the old one automatically) InstallDirRegKey HKLM SOFTWARE\Abisuite\AbiWord\v2 "Install_Dir" ; The text to prompt the user to enter a directory ComponentText "This will install Abiword's Brazilian Dictionary on your computer." ; The text to prompt the user to enter a directory DirText "Choose the AbiSuite directory where you previously installed Abiword:" CheckBitmap modern.bmp ; The stuff that must be installed ; binary, license, and Brazilian dictionary Section "Abiword.exe (required)" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Set output path to the installation directory. SetOutPath $INSTDIR\dictionary File "..\..\..\..\..\abispell\le\brazilian.hash" SetOutPath $INSTDIR File /oname=copying.txt "..\..\..\..\COPYING" File "..\..\..\..\user\wp\readme.txt" SectionEnd ; eof