~ubuntu-branches/ubuntu/vivid/fbreader/vivid-proposed

« back to all changes in this revision

Viewing changes to distributions/nsi/win32/control.nsi

  • Committer: Bazaar Package Importer
  • Author(s): Joey Hess
  • Date: 2008-01-23 16:51:07 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080123165107-5q19etahzd72c33a
Tags: 0.8.12-3
* Add libzlui-maemo which allows using fbreader on the maemo platform, on
  Debian. Thanks, Riku Voipio. Closes: #462299
* makefiles/arch/maemo.mk: Don't build with -thumb. (Riku)
* Loosen dependency versions some more, so it only depends on the current
  upstream version or higher, ignoring the Debian revision.
* Use binary:Version instead of deprecated Source-Version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
        WriteRegStr HKCU "Software\FBReader" "" $INSTDIR
21
21
 
22
22
        File /oname=FBReader.exe bin/FBReader
23
 
        File ../dlls/*.*
 
23
        File ../../dlls/*.*
24
24
        File /r share
25
25
  Delete "$INSTDIR\libiconv-2.dll"
26
26
  Delete "$INSTDIR\share\FBReader\help\MiniHelp.fb2"
39
39
        ReadRegStr $0 HKCU "Software\FBReader\options\Options" "BookPath"
40
40
        StrCmp $0 "" 0 +2
41
41
        WriteRegStr HKCU "Software\FBReader\options\Options" "BookPath" "C:\Books;$PROFILE\Books" 
42
 
        WriteRegStr HKCU "Software\FBReader\options\Help" "ShowIcon" "true" 
 
42
        WriteRegStr HKCU "Software\FBReader\options\PlatformOptions" "TouchScreenPresented" "true" 
 
43
        WriteRegStr HKCU "Software\FBReader\options\PlatformOptions" "MousePresented" "true" 
 
44
        WriteRegStr HKCU "Software\FBReader\options\PlatformOptions" "KeyboardPresented" "true" 
 
45
        WriteRegStr HKCU "Software\FBReader\options\Options" "KeyDelay" "0" 
 
46
        WriteRegStr HKCU "Software\FBReader\options\SmallScrolling" "ScrollingDelay" "true" 
 
47
        WriteRegStr HKCU "Software\FBReader\options\LargeScrolling" "ScrollingDelay" "true" 
 
48
        WriteRegStr HKCU "Software\FBReader\options\TapScrolling" "Enabled" "false" 
43
49
SectionEnd
44
50
 
45
51
Section "Create Shortcut on Desktop"
50
56
        RMDir /r "$INSTDIR\share"
51
57
        Delete "$INSTDIR\FBReader.exe"
52
58
        Delete "$INSTDIR\*.dll"
 
59
        Delete "$INSTDIR\*.license"
53
60
        Delete "$INSTDIR\uninstall.exe"
54
61
        RMDir "$INSTDIR"
55
62