mirror of
https://github.com/goreleaser/nfpm
synced 2024-11-15 13:34:28 +01:00
dedee6d6b1
* fix: do not encourage using /usr/local/bin Examples, tests and docs often refer to /usr/local/bin, which should only be used for things compiled locally, which is not the case of installed packages. Changed that to /usr/bin, and also some usages of things like /usr/something to /usr/share/something. Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com> * fix: complex test Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com> Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
23 lines
500 B
YAML
23 lines
500 B
YAML
name: "foo"
|
|
arch: "${BUILD_ARCH}"
|
|
platform: "linux"
|
|
version: "v1.2.3"
|
|
maintainer: "Foo Bar"
|
|
description: |
|
|
Foo bar
|
|
Multiple lines
|
|
vendor: "foobar"
|
|
homepage: "https://foobar.org"
|
|
license: "MIT"
|
|
contents:
|
|
- src: ./testdata/fake
|
|
dst: /usr/bin/fake
|
|
- src: ./testdata/whatever.conf
|
|
dst: /etc/foo/whatever.conf
|
|
type: config
|
|
deb:
|
|
scripts:
|
|
rules: ./testdata/acceptance/scripts/rules.sh
|
|
templates: ./testdata/acceptance/scripts/templates
|
|
config: ./testdata/acceptance/scripts/config
|