-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPupNet.pupnet.conf
115 lines (102 loc) · 3.03 KB
/
PupNet.pupnet.conf
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# PUPNET DEPLOY: 1.8.0
# Use: 'pupnet --help conf' for information.
# APP PREAMBLE
AppBaseName = PupNet
AppFriendlyName = PupNet Deploy
AppId = zone.kuiper.pupnet
AppVersionRelease = 1.8.0
AppShortSummary = Cross-platform deployment utility which packages your .NET project as a ready-to-ship installation file in a single step.
AppDescription = """
PupNet Deploy is a cross-platform deployment utility which packages your .NET project as a ready-to-ship
installation file in a single step.
It has been possible to cross-compile console C# applications for sometime now. More recently, the cross-platform
Avalonia replacement for WPF allows fully-featured GUI applications to target a range of platforms, including:
Linux, Windows, MacOS and Android.
Now, PupNet Deploy allows you to ship your dotnet application as:
* AppImage for Linux
* Setup File for Windows
* Flatpak
* Debian Binary Package
* RPM Binary Package
* Plain old Zip
PupNet has good support for internationalization, desktop icons, publisher metadata and custom build operations.
Although developed for .NET, it is also possible to use it to deploy C++ and other kinds of applications.
"""
AppLicenseId = AGPL-3.0-or-later
AppLicenseFile = LICENSE
AppChangeFile = CHANGES
# PUBLISHER
PublisherName = Kuiper Zone
PublisherCopyright = Copyright (C) Andy Thomas 2024
PublisherLinkName = Project Page
PublisherLinkUrl = https://github.com/kuiperzone/PupNet-Deploy
PublisherEmail = [email protected]
# DESKTOP INTEGRATION
DesktopNoDisplay = true
DesktopTerminal = true
DesktopFile =
StartCommand = pupnet
PrimeCategory = Development
MetaFile = Deploy/PupNet.metainfo.xml
IconFiles = """
Deploy/PupNet.ico
Deploy/PupNet.16x16.png
Deploy/PupNet.24x24.png
Deploy/PupNet.32x32.png
Deploy/PupNet.48x48.png
Deploy/PupNet.64x64.png
Deploy/PupNet.96x96.png
Deploy/PupNet.128x128.png
Deploy/PupNet.256x256.png
"""
# DOTNET PUBLISH
DotnetProjectPath = PupNet
DotnetPublishArgs = -p:Version=${APP_VERSION} --self-contained true -p:PublishReadyToRun=true -p:DebugType=None -p:DebugSymbols=false
DotnetPostPublish =
DotnetPostPublishOnWindows =
# PACKAGE OUTPUT
PackageName = PupNet-Deploy
OutputDirectory = Deploy/OUT
# APPIMAGE OPTIONS
AppImageArgs =
AppImageVersionOutput = true
# FLATPAK OPTIONS
FlatpakPlatformRuntime = org.freedesktop.Platform
FlatpakPlatformSdk = org.freedesktop.Sdk
FlatpakPlatformVersion = 23.08
FlatpakFinishArgs = """
--socket=wayland
--socket=x11
--filesystem=host
--share=network
"""
FlatpakBuilderArgs =
# RPM OPTIONS
RpmAutoReq = false
RpmAutoProv = true
RpmRequires = """
krb5-libs
libicu
openssl-libs
zlib
"""
# DEBIAN OPTIONS
DebianRecommends = """
libc6
libgcc1
libgcc-s1
libgssapi-krb5-2
libicu
libssl
libstdc++6
libunwind
zlib1g
"""
# WINDOWS SETUP OPTIONS
SetupGroupName =
SetupAdminInstall = false
SetupCommandPrompt = PupNet Console
SetupMinWindowsVersion = 10
SetupSignTool =
SetupSuffixOutput =
SetupVersionOutput = true