-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
README.conf.m4
42 lines (30 loc) · 1.62 KB
/
README.conf.m4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
dnl/// SPDX-FileCopyrightText: 2022-2024 Mirian Margiani
dnl/// SPDX-License-Identifier: GFDL-1.3-or-later
dnl///
dnl/// Notes:
dnl/// - remove unused definitions unless they must not change when the template changes
dnl/// - use ifdef(${__X_*}) with one of store, summary, description, readme, or, harbour
dnl/// to include sections conditionally
dnl///
dnl/// [PRETTY PROJECT NAME](required): set to the human-readable name of the project, e.g. "Example App"
define(${__name}, ${MeteoSwiss})
dnl/// [PROJECT SLUG](required): set to the computer-readable name used in URLs, e.g. "harbour-example"
define(${__slug}, ${harbour-meteoswiss})
dnl/// [PROJECT's FIRST COPYRIGHT YEAR](required)
define(${__copyright_start}, ${2018})
dnl/// [ABOUT PAGE FILE PATH](required)
define(${__about_page}, ${qml/pages/AboutPage.qml})
dnl/// [SOURCE CODE HOSTING PLATFORM](required)
define(${__forge}, ${Github})
dnl/// [SOURCE REPO URL](required): full url including repo name without protocol
define(${__repo_url}, ${github.com/ichthyosaurus/__slug})
dnl/// [WEBLATE PROJECT](optional): set to __slug for most apps
define(${__weblate_project}, __slug)
dnl/// [WEBLATE COMPONENT](required if using Weblate): ignored if Weblate is disabled
define(${__weblate_component}, ${translations})
dnl/// [SUBMODULES](optional): set to "true" to enable docs for cloning with submodules
define(${__have_submodules}, ${false})
dnl/// [PATCHES](optional): set to "true" to enable docs for applying patches
define(${__have_patches}, ${false})
dnl/// [PROJECT STATUS](optional): string for the "development" badge, either "active" or "stable"
define(${__devel_status}, ${stable})