101 lines
2.4 KiB
YAML
101 lines
2.4 KiB
YAML
project_name: arcast
|
|
before:
|
|
hooks:
|
|
- go mod tidy
|
|
builds:
|
|
- id: arcast-player
|
|
binary: arcast-player
|
|
env:
|
|
- CGO_ENABLED=0
|
|
ldflags:
|
|
- -s
|
|
- -w
|
|
- -X 'main.CommitRef={{ .Commit }}'
|
|
- -X 'main.Version={{ .Version }}'
|
|
gcflags:
|
|
- -trimpath="${PWD}"
|
|
asmflags:
|
|
- -trimpath="${PWD}"
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
main: ./cmd/desktop
|
|
- id: arcast-client
|
|
binary: arcast-client
|
|
env:
|
|
- CGO_ENABLED=0
|
|
ldflags:
|
|
- -s
|
|
- -w
|
|
- -X 'main.CommitRef={{ .Commit }}'
|
|
- -X 'main.Version={{ .Version }}'
|
|
gcflags:
|
|
- -trimpath="${PWD}"
|
|
asmflags:
|
|
- -trimpath="${PWD}"
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
main: ./cmd/client
|
|
archives:
|
|
- id: arcast-client
|
|
builds: ["arcast-client"]
|
|
name_template: '{{ .ProjectName }}-client_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 "v1") }}{{ .Amd64 }}{{ end }}'
|
|
files:
|
|
- README.md
|
|
- LICENCE
|
|
- id: arcast-player
|
|
builds: ["arcast-player"]
|
|
name_template: '{{ .ProjectName }}-player_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 "v1") }}{{ .Amd64 }}{{ end }}'
|
|
files:
|
|
- README.md
|
|
- LICENCE
|
|
checksum:
|
|
name_template: "checksums.txt"
|
|
snapshot:
|
|
name_template: "{{ .Version }}"
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- "^test:"
|
|
nfpms:
|
|
- id: arcast-player
|
|
builds:
|
|
- "arcast-player"
|
|
package_name: arcast-player
|
|
homepage: https://forge.cadoles.com/arcad/arcast
|
|
maintainer: Cadoles <contact@cadoles.com>
|
|
description: |-
|
|
Web diffusion player
|
|
license: AGPL-3.0
|
|
formats:
|
|
- apk
|
|
- deb
|
|
dependencies:
|
|
- chromium | chromium-browser | google-chrome-stable
|
|
contents:
|
|
- src: misc/packaging/player.desktop
|
|
dst: /usr/share/applications/arcast-player.desktop
|
|
type: config
|
|
- src: misc/logo/icon.png
|
|
dst: /usr/share/pixmaps/arcast-player.png
|
|
type: config
|
|
- id: arcast-client
|
|
builds:
|
|
- "arcast-client"
|
|
package_name: arcast-client
|
|
homepage: https://forge.cadoles.com/arcad/arcast
|
|
maintainer: Cadoles <contact@cadoles.com>
|
|
description: |-
|
|
Arcast player command-line client
|
|
license: AGPL-3.0
|
|
formats:
|
|
- apk
|
|
- deb
|