diff options
author | Werner Koch <[email protected]> | 2025-06-02 13:43:23 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2025-06-02 14:52:16 +0000 |
commit | a83fe3fb1cd704cebdb9dcbce5bdd5eeee766edb (patch) | |
tree | c7e51f77d0d23a5f319d4d2d746b35f0eb7d9055 /build-aux | |
parent | po: msgmerge (diff) | |
download | gnupg-a83fe3fb1cd704cebdb9dcbce5bdd5eeee766edb.tar.gz gnupg-a83fe3fb1cd704cebdb9dcbce5bdd5eeee766edb.zip |
nsis: Install the help files.
* build-aux/speedo/w32/inst.nsi: Install the template files.
--
The help files are not very well known but we should at least install
some. We also install those for the wks-utils in case we will ever
support gpg-wks-server of gpg-mail-tube on Windows.
Release 2.5.7
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/speedo/w32/inst.nsi | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/build-aux/speedo/w32/inst.nsi b/build-aux/speedo/w32/inst.nsi index 71dd84a9a..fa22cce46 100644 --- a/build-aux/speedo/w32/inst.nsi +++ b/build-aux/speedo/w32/inst.nsi @@ -674,7 +674,15 @@ Section "GnuPG" SEC_gnupg SetOutPath "$INSTDIR\share\gnupg" File "share/gnupg/distsigkey.gpg" - File "share/gnupg/sks-keyservers.netCA.pem" + File /nonfatal "share/gnupg/help.txt" + File /nonfatal "share/gnupg/help.de.txt" + File /nonfatal "share/gnupg/help.fr.txt" + File /nonfatal "share/gnupg/mail-tube.txt" + File /nonfatal "share/gnupg/mail-tube.de.txt" + File /nonfatal "share/gnupg/mail-tube.fr.txt" + File /nonfatal "share/gnupg/wks-utils.txt" + File /nonfatal "share/gnupg/wks-utils.de.txt" + File /nonfatal "share/gnupg/wks-utils.fr.txt" SetOutPath "$INSTDIR\share\doc\gnupg\examples" File "share/doc/gnupg/examples/pwpattern.list" @@ -1330,10 +1338,15 @@ Section "-un.gnupg" RMDir "$INSTDIR\share\doc\gnupg" RMDir "$INSTDIR\share\doc" - Delete "$INSTDIR\share\gnupg\sks-keyservers.netCA.pem" Delete "$INSTDIR\share\gnupg\dirmngr-conf.skel" Delete "$INSTDIR\share\gnupg\distsigkey.gpg" Delete "$INSTDIR\share\gnupg\gpg-conf.skel" + Delete "$INSTDIR\share\gnupg\help.txt" + Delete "$INSTDIR\share\gnupg\help.*.txt" + Delete "$INSTDIR\share\gnupg\mail-tube.txt" + Delete "$INSTDIR\share\gnupg\mail-tube.*.txt" + Delete "$INSTDIR\share\gnupg\wks-utils.txt" + Delete "$INSTDIR\share\gnupg\wks-utils.*.txt" RMDir "$INSTDIR\share\gnupg" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\gnupg2.mo" |