-
-
Notifications
You must be signed in to change notification settings - Fork 143
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
1 changed file
with
135 additions
and
0 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 |
---|---|---|
|
@@ -169,3 +169,138 @@ brews: | |
# post_install: | | ||
# etc.install "app-config.conf" | ||
# ... | ||
# | ||
# .goreleaser.yaml | ||
# | ||
aurs: | ||
- | ||
# The package name. | ||
# | ||
# Defaults to the Project Name with a -bin suffix. | ||
# | ||
# Note that since this integration does not create a PKGBUILD to build from | ||
# source, per Arch's guidelines. | ||
# That said, GoReleaser will enforce a `-bin` suffix if its not present. | ||
name: kaf | ||
|
||
# Your app's homepage. | ||
# Default is empty. | ||
#homepage: "https://example.com/" | ||
|
||
# Template of your app's description. | ||
# Default is empty. | ||
# description: "Software to create fast and easy drum rolls." | ||
|
||
# The maintainers of the package. | ||
# Defaults to empty. | ||
maintainers: | ||
- 'Johannes Bruederl <[email protected]>' | ||
|
||
# The contributors of the package. | ||
# Defaults to empty. | ||
contributors: | ||
- 'Michał Lisowski <[email protected]>' | ||
|
||
# SPDX identifier of your app's license. | ||
# Default is empty. | ||
license: "MIT" | ||
|
||
# The SSH private key that should be used to commit to the Git repository. | ||
# This can either be a path or the key contents. | ||
# | ||
# WARNING: do not expose your private key in the config file! | ||
#private_key: '{{ .Env.AUR_KEY }}' | ||
|
||
# The AUR Git URL for this package. | ||
# Defaults to empty. | ||
git_url: 'https://aur.archlinux.org/kaf.git' | ||
|
||
# Setting this will prevent goreleaser to actually try to commit the updated | ||
# formula - instead, the formula file will be stored on the dist folder only, | ||
# leaving the responsibility of publishing it to the user. | ||
# | ||
# If set to auto, the release will not be uploaded to the homebrew tap | ||
# in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1. | ||
# | ||
# Default is false. | ||
# skip_upload: true | ||
|
||
# List of additional packages that the software provides the features of. | ||
# | ||
# Defaults to the project name. | ||
# provides: | ||
# - kaf | ||
|
||
# List of packages that conflict with, or cause problems with the package. | ||
# | ||
# Defaults to the project name. | ||
# conflicts: | ||
# - mybin | ||
|
||
# List of packages that must be installed to install this. | ||
# | ||
# Defaults to empty. | ||
# depends: | ||
# - curl | ||
|
||
# List of packages that are not needed for the software to function, | ||
# but provide additional features. | ||
# | ||
# Must be in the format `package: short description of the extra functionality`. | ||
# | ||
# Defaults to empty. | ||
# optdepends: | ||
# - 'wget: for downloading things' | ||
|
||
# Custom package instructions. | ||
# | ||
# Defaults to `install -Dm755 "./PROJECT_NAME" "${pkgdir}/usr/bin/PROJECT_NAME", | ||
# which is not always correct. | ||
# | ||
# We recommend you override this, installing the binary, license and | ||
# everything else your package needs. | ||
package: |- | ||
# bin | ||
install -Dm755 "./kaf" "${pkgdir}/usr/bin/kaf" | ||
# license | ||
install -Dm644 "./LICENSE.md" "${pkgdir}/usr/share/licenses/kaf/LICENSE" | ||
# completions | ||
# bash | ||
mkdir -p "${pkgdir}/etc/bash_completion.d" | ||
./kaf completion bash > "${pkgdir}/etc/bash_completion.d/kaf" | ||
# zsh | ||
mkdir -p "${pkgdir}/usr/share/zsh/site-functions" | ||
./kaf completion zsh > "${pkgdir}/usr/share/zsh/site-functions/_kaf" | ||
# Fish | ||
./kaf completion fish > ${pkgdir}/usr/share/fish/vendor_completions.d/kaf.fish | ||
# Git author used to commit to the repository. | ||
# Defaults are shown below. | ||
commit_author: | ||
name: Johannes Bruederl | ||
email: [email protected] | ||
|
||
# Commit message template. | ||
# Defaults to `Update to {{ .Tag }}`. | ||
commit_msg_template: "pkgbuild updates" | ||
|
||
# If you build for multiple GOAMD64 versions, you may use this to choose which one to use. | ||
# Defaults to `v1`. | ||
goamd64: v2 | ||
|
||
# The value to be passed to `GIT_SSH_COMMAND`. | ||
# This is mainly used to specify the SSH private key used to pull/push to | ||
# the Git URL. | ||
# | ||
# Defaults to `ssh -i {{ .KeyPath }} -o StrictHostKeyChecking=accept-new -F /dev/null`. | ||
#git_ssh_command: 'ssh -i {{ .Env.KEY }} -o SomeOption=yes' | ||
|
||
# Template for the url which is determined by the given Token | ||
# (github, gitlab or gitea). | ||
# | ||
# Default depends on the client. | ||
#url_template: "http://github.mycompany.com/foo/bar/releases/{{ .Tag }}/{{ .ArtifactName }}" |