Warning, /graphics/digikam/project/bundles/vcpkg/installer/readme_page.nsh is written in an unsupported language. File is not indexed.
0001 ;; ============================================================
0002 ;
0003 ; This file is a part of digiKam project
0004 ; https://www.digikam.org
0005 ;
0006 ; Date : 2007-01-01
0007 ; Description : Functions to create README page.
0008 ; For details: http://nsis.sourceforge.net/Readme_Page_Based_on_MUI_License_Page
0009 ; Note: NSIS >= 3 is required to be compatible with Windows 10.
0010 ;
0011 ; SPDX-FileCopyrightText: 2010-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0012 ;
0013 ; SPDX-License-Identifier: GPL-2.0-or-later
0014 ;
0015 ; ============================================================ ;;
0016
0017 !ifndef README_PAGE_NSH
0018 !define README_PAGE_NSH
0019
0020 !macro MUI_EXTRAPAGE_README UN ReadmeFile
0021
0022 !verbose push
0023 !verbose 3
0024
0025 !define MUI_PAGE_HEADER_TEXT "Read Me"
0026 !define MUI_PAGE_HEADER_SUBTEXT "Please review the following important information."
0027 !define MUI_LICENSEPAGE_TEXT_TOP "About $(^name):"
0028 !define MUI_LICENSEPAGE_TEXT_BOTTOM "Click on scrollbar arrows or press Page Down to review the entire text."
0029 !define MUI_LICENSEPAGE_BUTTON "$(^NextBtn)"
0030 !insertmacro MUI_${UN}PAGE_LICENSE "${ReadmeFile}"
0031
0032 !verbose pop
0033
0034 !macroend
0035
0036 ;-------------------------------------------------------------------------------------
0037
0038 !define ReadmeRun "!insertmacro MUI_EXTRAPAGE_README"
0039
0040 !macro MUI_PAGE_README ReadmeFile
0041
0042 !verbose push
0043 !verbose 3
0044
0045 ${ReadmeRun} "" "${ReadmeFile}"
0046
0047 !verbose pop
0048
0049 !macroend
0050
0051 !endif ;README_PAGE_NSH