-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnfpm.yaml
More file actions
40 lines (40 loc) · 952 Bytes
/
nfpm.yaml
File metadata and controls
40 lines (40 loc) · 952 Bytes
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
---
# nfpm example configuration file
#
# check https://nfpm.goreleaser.com/configuration for detailed usage
#
name: readable-name-generator
arch: ${GOARCH}
platform: ${GOOS}
version: ${VER}
section: default
priority: extra
maintainer: Billie Thompson <billie@billiecodes.com>
description: Generate a readable names suitable for infrastructure
vendor: PurpleBooth
homepage: https://codeberg.org/PurpleBooth/readable-name-generator
license: CC0
contents:
- src: ./target/release/readable-name-generator
dst: /usr/bin/readable-name-generator
file_info:
mode: 0755
owner: root
group: root
rpm:
signature:
key_file: ${NFPM_SIGNING_KEY_FILE}
compression: gzip
packager: rpmbuild <noreply@purplebooth.com>
deb:
signature:
key_file: ${NFPM_SIGNING_KEY_FILE}
compression: gzip
apk:
signature:
key_file: ${NFPM_SIGNING_KEY_FILE}
overrides:
debian:
depends: [libc6]
alpine:
depends: [libc6-compat]