-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
71 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,3 +33,68 @@ changelog: | |
exclude: | ||
- "^docs:" | ||
- "^test:" | ||
|
||
# .goreleaser.yaml | ||
nfpms: | ||
# note that this is an array of nfpm configs | ||
- # | ||
id: vapour | ||
|
||
# Name of the package. | ||
# | ||
# Default: ProjectName. | ||
# Templates: allowed. | ||
package_name: vapour | ||
|
||
# Your app's vendor. | ||
vendor: Vapour | ||
|
||
# Your app's homepage. | ||
# | ||
# Default: inferred from global metadata. | ||
homepage: https://vapour.run | ||
|
||
# Your app's maintainer (probably you). | ||
# | ||
# Default: inferred from global metadata. | ||
maintainer: John Coene <[email protected]> | ||
|
||
# Your app's description. | ||
# | ||
# Default: inferred from global metadata. | ||
description: |- | ||
Vapour is a typed superset of R. | ||
# Your app's license. | ||
# | ||
# Default: inferred from global metadata. | ||
license: Apache 2.0 | ||
|
||
# Formats to be generated. | ||
formats: | ||
- apk | ||
- deb | ||
- rpm | ||
- termux.deb | ||
- archlinux | ||
|
||
# Umask to be used on files without explicit mode set. (overridable) | ||
# | ||
# Default: 0o002 (will remove world-writable permissions). | ||
umask: 0o002 | ||
|
||
# Path that the binaries should be installed. | ||
# | ||
# Default: '/usr/bin'. | ||
bindir: /usr/bin | ||
|
||
# Version Release. | ||
release: 1 | ||
|
||
# Section. | ||
section: default | ||
|
||
# Makes a meta package - an empty package that contains only supporting | ||
# files and dependencies. | ||
# When set to `true`, the `builds` option is ignored. | ||
meta: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters