1# .goreleaser.yml
2# https://goreleaser.com/
3
4project_name: o
5
6# Build customization
7builds:
8  - binary: o
9    goos:
10      - linux
11      - freebsd
12      - darwin
13    goarch:
14      - amd64
15      - arm64
16      - arm
17    goarm:
18      - 6
19      - 7
20    ignore:
21      - goos: darwin
22        goarch: arm
23      - goos: darwin
24        goarch: arm64
25      - goos: linux
26        goarch: arm
27        goarm: 7
28      - goos: freebsd
29        goarch: arm
30        goarm: 7
31
32# Archive customization
33archive:
34  format: tar.gz
35  replacements:
36    amd64: x86_64
37    386: i686
38    darwin: macos
39  wrap_in_directory: true
40  files:
41    - o.1
42    - LICENSE*
43    - README.*
44