forked from xishang0128/sparkle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
119 lines (119 loc) · 2.82 KB
/
electron-builder.yml
File metadata and controls
119 lines (119 loc) · 2.82 KB
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
116
117
118
119
appId: sparkle.app
productName: Sparkle
directories:
buildResources: build
files:
- '!**/.vscode/*'
- '!src/*'
- '!aur/*'
- '!images/*'
- '!scripts/*'
- '!extra/*'
- '!tailwind.config.js'
- '!postcss.config.js'
- '!electron.vite.config.{js,ts,mjs,cjs}'
- '!{.eslintignore,.eslintrc.cjs,.prettierignore,.prettierrc.yaml,dev-app-update.yml,CHANGELOG.md,README.md}'
- '!{.env,.env.*,.npmrc,pnpm-lock.yaml}'
- '!{tsconfig.json,tsconfig.node.json,tsconfig.web.json}'
extraResources:
- from: './extra/'
to: ''
protocols:
name: 'Sparkle URI Scheme'
schemes:
- 'clash'
- 'mihomo'
- 'sparkle'
win:
target:
- nsis
- 7z
artifactName: ${name}-windows-${version}-${arch}-portable.${ext}
nsis:
artifactName: ${name}-windows-${version}-${arch}-setup.${ext}
uninstallDisplayName: ${productName}
allowToChangeInstallationDirectory: true
oneClick: false
perMachine: true
createDesktopShortcut: true
mac:
target:
- pkg
entitlementsInherit: build/entitlements.mac.plist
extendInfo:
- NSCameraUsageDescription: Application requests access to the device's camera.
- NSMicrophoneUsageDescription: Application requests access to the device's microphone.
- NSDocumentsFolderUsageDescription: Application requests access to the user's Documents folder.
- NSDownloadsFolderUsageDescription: Application requests access to the user's Downloads folder.
notarize: false
artifactName: ${name}-macos-${version}-${arch}.${ext}
pkg:
allowAnywhere: false
allowCurrentUserHome: false
# background:
# alignment: bottomleft
# file: build/background.png
linux:
desktop:
entry:
Name: Sparkle
MimeType: 'x-scheme-handler/clash;x-scheme-handler/mihomo;x-scheme-handler/sparkle'
target:
- deb
- rpm
- pacman
maintainer: xishang0128 <xishang02@gmail.com>
category: Utility
artifactName: ${name}-linux-${version}-${arch}.${ext}
deb:
fpm:
- --before-install=build/linux/preinst
afterInstall: 'build/linux/postinst'
depends:
- libasound2
- libgtk-3-0
- libnotify4
- libnss3
- libxss1
- libxtst6
- xdg-utils
- libatspi2.0-0
- libuuid1
- libsecret-1-0
recommends:
- libappindicator3-1
rpm:
fpm:
- --before-install=build/linux/preinst
afterInstall: 'build/linux/postinst'
depends:
- alsa-lib
- gtk3
- libnotify
- nss
- libXScrnSaver
- libXtst
- xdg-utils
- at-spi2-core
- libuuid
- libsecret
pacman:
afterInstall: 'build/linux/postinst'
fpm:
- --before-install=build/linux/preinst
- --pacman-compression
- zstd
depends:
- alsa-lib
- gtk3
- libnotify
- nss
- libxss
- libxtst
- xdg-utils
- at-spi2-core
- util-linux-libs
- libsecret
artifactName: ${name}-linux-${version}-${arch}.pkg.tar.zst
npmRebuild: true
publish: []