| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #!/bin/sh
- #
- # Copyright (C) by Daniel Molkentin <danimo@owncloud.com>
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful, but
- # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- # for more details.
- #
- WINEPREFIX=${WINEPREFIX:=$HOME/.wine}
- test -d "$WINEPREFIX" || wineprefixcreate
- # Setup the registry
- wine regedit htmlhelp.reg
- # Install HTML Help Workshop
- wget 'http://go.microsoft.com/fwlink/?LinkId=14188' -O htmlhelp.exe
- wine htmlhelp.exe
- # Install ITSS.DLL
- cabextract -F hhupd.exe htmlhelp.exe
- cabextract -F itircl.dll hhupd.exe
- cabextract -F itss.dll hhupd.exe
- cp -a itircl.dll "$WINEPREFIX/drive_c/windows/system32/"
- cp -a itss.dll "$WINEPREFIX/drive_c/windows/system32/"
- wine regsvr32 /s 'C:\WINDOWS\SYSTEM32\itircl.dll'
- wine regsvr32 /s 'C:\WINDOWS\SYSTEM32\itss.dll'
- # Install MFC40.DLL
- wget -N http://activex.microsoft.com/controls/vc/mfc40.cab
- cabextract -F mfc40.exe mfc40.cab
- cabextract -F mfc40.dll mfc40.exe
- cp -a mfc40.dll "$WINEPREFIX/drive_c/windows/system32/"
|