mirror of
https://github.com/goreleaser/nfpm
synced 2025-04-05 13:49:07 +02:00
Implements #507. * Adds ipk support for keywords used by OpenWRT and Yocto. * MD5sum is explicitly excluded due to insecurity. * SHA256Sum excluded due packages not being individually signed, instead, the feed of packages is checksummed and signed externally. * Adds code to nfpm package to automatically enumerate the supported packaging types where possible.
18 lines
360 B
YAML
18 lines
360 B
YAML
name: "foo"
|
|
arch: "all"
|
|
platform: "linux"
|
|
version: "v1.0.0"
|
|
maintainer: "John Doe <john@example.com>"
|
|
description: Foo conflicts dummy
|
|
contents:
|
|
- src: ./testdata/fake
|
|
dst: /usr/bin/fake
|
|
ipk:
|
|
alternatives:
|
|
- priority: 100
|
|
target: /usr/bin/fake
|
|
link_name: /usr/bin/bar
|
|
|
|
- link_name: /usr/bin/baz
|
|
target: /usr/bin/fake
|
|
priority: 200 |