Changeset 1872
- Timestamp:
- 01/26/07 21:02:16 (2 years ago)
- Files:
-
- trunk/swish-e/src/win32/filebase.nsh (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/swish-e/src/win32/filebase.nsh
r1868 r1872 28 28 File "../../COPYING.txt" 29 29 File "fixperl.pl" 30 31 ; Misc Documents 32 SetOutPath "$INSTDIR\share\doc\swish-e" 33 File "../../INSTALL" 34 File "../../README.txt" 35 File "../../README.cvs" 30 36 31 37 ; Local Helper Files … … 34 40 File "../../prog-bin/spider.pl.in" 35 41 42 43 36 44 ; Create shorcuts on the Start Menu 37 45 SetOutPath "$SMPROGRAMS\SWISH-E\" … … 44 52 WriteINIStr "$SMPROGRAMS\\SWISH-E\\PERL_Resources\\CPAN_PERL_Modules.url" "InternetShortcut" "URL" "http://search.cpan.org/" 45 53 SectionEnd ; end of default section 54 55 ; User and Developer Documentation 56 Section "Documentation" SecDoc 57 SetOutPath "$INSTDIR\share\doc\swish-e\html" 58 File "../../html/*.html" 59 File "../../html/*.css" 60 SetOutPath "$INSTDIR\share\doc\swish-e\pod" 61 File "../../pod/*.pod" 62 SectionEnd 46 63 47 64 ; the static libraries are 20 MB. … … 148 165 File "../../filters/swish-filter-test.in" 149 166 150 SetOutPath "$INSTDIR\share\doc\swish-e\ filter-bin\"167 SetOutPath "$INSTDIR\share\doc\swish-e\examples\filter-bin\" 151 168 ; Example Filter Scripts 152 169 File "../../filter-bin/_binfilter.sh" 153 170 File "../../filter-bin/_pdf2html.pl" 154 155 # Generic SWISH::Filter Filter156 SetOutPath "$INSTDIR\lib\swish-e\"157 171 File "../../filter-bin/swish_filter.pl.in" 158 172 159 173 # SWISH::Filter API 160 SetOutPath "$INSTDIR\lib\swish-e\perl\ "161 File "../../filters/SWISH/ *"162 SetOutPath "$INSTDIR\lib\swish-e\perl\ Filters\"163 File "../../filters/SWISH/Filters/* "174 SetOutPath "$INSTDIR\lib\swish-e\perl\SWISH\" 175 File "../../filters/SWISH/Filter.pm.in" 176 SetOutPath "$INSTDIR\lib\swish-e\perl\SWISH\Filters" 177 File "../../filters/SWISH/Filters/*.pm" 164 178 165 179 SectionEnd … … 168 182 WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\SWISH-E Team\SWISH-E\${VERSION}\Options" "Perl" "1" 169 183 WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\SWISH-E Team\SWISH-E\${VERSION}\Options" "PerlMethods" "1" 170 SetOutPath "$INSTDIR\share\doc\swish-e\ prog-bin\"184 SetOutPath "$INSTDIR\share\doc\swish-e\examples\prog-bin\" 171 185 File "../../prog-bin/*.pl" 172 File "../../prog-bin/*. in"186 File "../../prog-bin/*.pl.in" 173 187 File "../../prog-bin/*.pm" 174 188 SectionEnd … … 176 190 177 191 Section "Examples" SecExample 178 SetOutPath "$INSTDIR\share\doc\swish-e\conf\" 179 File "../../conf/*" 180 SetOutPath "$INSTDIR\share\doc\swish-e\conf\stopwords\" 181 File "../../conf/stopwords/*" 192 SetOutPath "$INSTDIR\share\doc\swish-e\examples\conf\" 193 File "../../conf/*.config" 194 File "../../conf/README.txt" 195 SetOutPath "$INSTDIR\share\doc\swish-e\examples\conf\stopwords\" 196 File "../../conf/stopwords/*.txt" 182 197 183 198 ; Rename text files so Windows has a clue … … 203 218 204 219 ; Add swish-e.exe to the Win32 Path 205 WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\AppPaths\swish-e.exe" "" "$INSTDIR\ swish-e.exe"206 WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\AppPaths\swish-e.exe" "Path" "$INSTDIR ;$INSTDIR\lib\swish-e"220 WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\AppPaths\swish-e.exe" "" "$INSTDIR\bin\swish-e.exe" 221 WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\AppPaths\swish-e.exe" "Path" "$INSTDIR\bin;$INSTDIR\lib\swish-e" 207 222 208 223 WriteUninstaller "uninst.exe"
