-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
.goreleaser.yml
88 lines (78 loc) · 1.75 KB
/
.goreleaser.yml
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
project_name: ymuse
before:
hooks:
- go generate
- go mod download
builds:
- id: ymuse
binary: ymuse
env:
- CGO_ENABLED=1
goos:
- linux
goarch:
- amd64
archives:
- id: ymuse-binary
builds:
- ymuse
wrap_in_directory: 'true'
files:
- COPYING
- README.md
- resources/icons/**
- resources/com.yktoo.ymuse.desktop
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^ci:'
- '^code:'
- '^docs:'
- '^snap:'
- '^test:'
- '^wip:'
release:
github:
owner: yktoo
name: ymuse
nfpms:
- id: ymuse
package_name: ymuse
vendor: Dmitry Kann
homepage: https://yktoo.com/
maintainer: Dmitry Kann <yktooo@gmail.com>
description: Easy, functional, and snappy GTK client for Music Player Daemon (MPD).
license: Apache 2.0
formats:
- deb
- rpm
dependencies:
- libc6
- libgtk-3-0
recommends:
- mpd
suggests: []
conflicts: []
bindir: /usr/bin
contents:
- src: "resources/icons/hicolor/**/*"
dst: "/usr/share/icons/hicolor"
- src: "resources/*.desktop"
dst: "/usr/share/applications"
- src: "resources/metainfo/*.metainfo.xml"
dst: "/usr/share/metainfo"
- src: "resources/i18n/generated/**/*"
dst: "/usr/share/locale"
scripts:
postinstall: "resources/scripts/postinst"
postremove: "resources/scripts/postrm"
overrides:
rpm:
dependencies:
- glibc
- gtk3