mirror of
https://github.com/goreleaser/nfpm
synced 2025-04-05 13:49:07 +02:00
* 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>
37 lines
794 B
YAML
37 lines
794 B
YAML
name: "foo"
|
|
arch: "${BUILD_ARCH}"
|
|
platform: "linux"
|
|
version: "${SEMVER}"
|
|
maintainer: "Foo Bar"
|
|
depends:
|
|
- bash
|
|
provides:
|
|
- fake
|
|
replaces:
|
|
- foo
|
|
suggests:
|
|
- zsh
|
|
description: |
|
|
Foo bar
|
|
Multiple lines
|
|
vendor: "foobar"
|
|
homepage: "https://foobar.org"
|
|
license: "MIT"
|
|
contents:
|
|
- src: ./testdata/fake
|
|
dst: /usr/bin/fake
|
|
- src: ./testdata/acceptance/folder/**/*
|
|
dst: /usr/share/whatever/folder/
|
|
- src: ./testdata/whatever.conf
|
|
dst: /etc/foo/whatever.conf
|
|
type: config
|
|
- dst: /var/log/whatever
|
|
type: dir
|
|
- dst: /usr/share/foo
|
|
type: dir
|
|
scripts:
|
|
preinstall: ./testdata/acceptance/scripts/preinstall.sh
|
|
postinstall: ./testdata/acceptance/scripts/postinstall.sh
|
|
preremove: ./testdata/acceptance/scripts/preremove.sh
|
|
postremove: ./testdata/acceptance/scripts/postremove.sh
|