1 # gpg4win.nsi - Installer for GnuPG 4 Windows. -*- coding: latin-1; -*-
2 # Copyright (C) 2005 g10 Code GmbH
4 # This file is part of GPG4Win.
6 # GPG4Win is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # GPG4Win is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
20 !include "../include/config.nsi"
22 # The package name and version. PRETTY_PACKAGE is a user visible name
23 # only while PACKAGE is useful for filenames etc. PROD_VERSION is the
24 # product version and needs to be in the format "MAJ.MIN.MIC.BUILDNR".
25 !define PACKAGE "${_PACKAGE}"
26 !define PRETTY_PACKAGE "GnuPG For Windows"
27 !define PRETTY_PACKAGE_SHORT "GPG4Win"
28 !define VERSION "${_VERSION}"
30 !define PROD_VERSION "0.0.0.1"
31 !define COMPANY "g10 Code GmbH"
32 !define COPYRIGHT "Copyright (C) 2005 g10 Code GmbH"
33 !define DESCRIPTION "GPG4Win: The GNU Privacy Guard and tools for Windows"
35 !define INSTALL_DIR "GnuPG"
37 !define ABOUT_ENGLISH \
38 "GnuPG is GNU's tool for secure communication and data storage. \
39 It can be used to encrypt data and to create digital signatures. \
40 It includes an advanced key management facility and is compliant \
41 with the proposed OpenPGP Internet standard as described in RFC2440. \
43 \r\n\r\n\r\n\r\n\r\nThis is GnuPG version ${VERSION}\r\n\
44 file version ${PROD_VERSION}"
45 !define ABOUT_GERMAN \
46 "GnuPG is das Werkzeug aus dem GNU Projekt zur sicheren Kommunikation \
47 sowie zum sicheren Speichern von Daten. \
49 \r\n\r\n\r\n\r\n\r\nDies ist GnuPG Version ${VERSION}\r\n\
50 Dateiversion ${PROD_VERSION}"
53 # The copyright license of the package. Define only one of these.
55 # !define LICENSE_LGPL
58 # Define this if we require an NSIS running on Windows. This is
59 # necessary if you want to handle DLLs properly.
60 # !define REQUIRE_W32_NSIS
63 # Define if in debug mode.
67 # The installation directory.
68 !define ipdir "playground/install/pkgs"
71 # Now include the generic parts.
72 !include "installer.nsi"
75 # Now include the sections.
77 !include "inst-sections.nsi"
80 # Now include the generic parts to end the installation.
81 !include "installer-finish.nsi"