mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2024-11-24 07:42:46 +01:00
78c7dc95a0
make doc will build all of the above, except for CHM, which needs manual preparation and can be built with make doc-chm. See doc/scripts/README.rst for details. We do our best to ensure to detect the required tools before adding targets, so a build should always succeed. Exception: On Debian and Ubuntu, the following packages are required to build the PDF target (in addition to pdflatex itself, which is autodetected): * texlive-latex-recommended * texlive-latex-extra * texlive-fonts-recommended If pdflatex is present, but those are not, the doc target will fail. Results can be found in $BUILDDIR/doc/$format.
28 lines
795 B
Bash
Executable File
28 lines
795 B
Bash
Executable File
#!/bin/sh
|
|
|
|
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/"
|