forked from TheCacophonyProject/thermal-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
62 lines (58 loc) · 1.65 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
project_name: thermal-recorder
dist: dist
release:
github:
owner: TheCacophonyProject
name: thermal-recorder
name_template: '{{.Tag}}'
builds:
- id: thermal-recorder
binary: thermal-recorder
main: ./cmd/thermal-recorder
goos:
- linux
goarch:
- arm
goarm:
- "7"
ldflags: -s -w -X main.version={{.Version}}
- id: leptond
binary: leptond
main: ./cmd/leptond
goos:
- linux
goarch:
- arm
goarm:
- "7"
ldflags: -s -w -X main.version={{.Version}}
- id: thermal-writer
binary: thermal-writer
main: ./cmd/thermal-writer
goos:
- linux
goarch:
- arm
goarm:
- "7"
ldflags: -s -w -X main.version={{.Version}}
nfpms:
-
vendor: The Cacophony Project
homepage: http://cacophony.org.nz/
maintainer: Menno Finlay-Smits <menno@cacophony.org.nz>
description: Record thermal video footage from FLIR Lepton 3 camera
license: GPL v3.0
file_name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Arch }}"
formats:
- deb
bindir: /usr/bin
files:
"_release/thermal-recorder.service": "/etc/systemd/system/thermal-recorder.service"
"_release/leptond.service": "/etc/systemd/system/leptond.service"
"_release/thermal-writer.service": "/etc/systemd/system/thermal-writer.service"
"set-thermal-recorder-output/set-thermal-recorder-output.service": "/etc/systemd/system/set-thermal-recorder-output.service"
"set-thermal-recorder-output/set-thermal-recorder-output": "/usr/bin/set-thermal-recorder-output"
"_release/org.cacophony.thermalrecorder.conf": "/etc/dbus-1/system.d/org.cacophony.thermalrecorder.conf"
checksum:
name_template: '{{ .ProjectName }}_{{ .Version }}_checksums.txt'