forked from gopasspw/gopass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
109 lines (104 loc) · 2.83 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# goreleaser.yml
# Release automation
#
# Build customization
project_name: gopass
before:
hooks:
- make clean
- make completion
builds:
- id: gopass
binary: gopass
flags: |
-tags netgo -gcflags="-trimpath=$GOPATH" -asmflags="-trimpath=$GOPATH"
env:
- CGO_ENABLED=0
ldflags: |
-s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -extldflags '-static'
goos:
- darwin
- freebsd
- linux
- openbsd
- windows
goarch:
- amd64
goarm:
- 6
- 7
archives:
- id: gopass
name_template: "{{.Binary}}-{{.Version}}-{{.Os}}-{{.Arch}}"
format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- CHANGELOG.md
- LICENSE
- README.md
- bash.completion
- fish.completion
- zsh.completion
release:
github:
owner: gopasspw
name: gopass
draft: false
brews:
- name: gopass
github:
owner: gopasspw
name: homebrew-gopass
caveats: |
Gopass has been installed, have fun!
If upgrading from `pass`, everything should work as expected.
If installing from scratch, you need to either initialize a new repository now...
gopass init
...or clone one from a source:
gopass clone git@code.example.com:example/pass.git
In order to use the great autocompletion features (they're helpful with gopass),
please make sure you have autocompletion for homebrew enabled:
https://github.com/bobthecow/git-flow-completion/wiki/Install-Bash-git-completion
More information:
https://www.gopass.pw/
https://github.com/gopasspw/gopass/README.md
homepage: "https://www.gopass.pw/"
description: "The slightly more awesome Standard Unix Password Manager for Teams."
dependencies:
- git
- gnupg
- terminal-notifier
install: |
ENV["GOPATH"] = buildpath
(buildpath/"src/github.com/gopasspw/gopass").install buildpath.children
cd "src/github.com/gopasspw/gopass" do
ENV["PREFIX"] = prefix
system "make", "install"
end
system bin/"gopass completion bash > bash_completion.bash"
system bin/"gopass completion zsh > zsh_completion.zsh"
bash_completion.install "bash_completion.bash"
zsh_completion.install "zsh_completion.zsh"
test: |
assert_match version.to_s, shell_output("#{bin}/gopass version")
nfpms:
- id: gopass
vendor: Gopass Authors
homepage: "https://www.gopass.pw"
maintainer: "Gopass Authors <gopass@gopass.pw>"
license: MIT
formats:
- deb
- rpm
dependencies:
- git
- gnupg2
recommends:
- rng-tools
source:
enabled: true
name_template: "{{.ProjectName}}-{{.Version}}"
checksum:
name_template: "{{.ProjectName}}_{{.Version}}_SHA256SUMS"