-
Notifications
You must be signed in to change notification settings - Fork 1
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
Peter Kurfer
committed
Jun 18, 2024
1 parent
c40dcad
commit 81c22c9
Showing
2 changed files
with
32 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
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 |
---|---|---|
|
@@ -53,6 +53,7 @@ archives: | |
files: | ||
- src: out/man/git-age.1.gz | ||
dst: docs/git-age.1.gz | ||
- LICENSE | ||
|
||
sboms: | ||
- artifacts: binary | ||
|
@@ -170,3 +171,33 @@ winget: | |
owner: microsoft | ||
name: winget-pkgs | ||
branch: master | ||
|
||
aurs: | ||
- name: git-age-bin | ||
homepage: https://github.com/prskr/git-age | ||
description: | | ||
git-age is a smudge/clean filter to encrypt/decrypt files in a git repository transparently | ||
maintainers: | ||
- "Peter Kurfer <[email protected]>" | ||
contributors: | ||
- "Peter Kurfer <[email protected]>" | ||
license: "MIT" | ||
private_key: "{{ .Env.AUR_KEY }}" | ||
git_url: "ssh://[email protected]/git-age-bin.git" | ||
provides: | ||
- git-age | ||
optdepends: | ||
- git | ||
package: |- | ||
# bin | ||
install -Dm755 "./git-age" "${pkgdir}/usr/bin/git-age" | ||
# license | ||
install -Dm644 "./LICENSE" "${pkgdir}/usr/share/licenses/git-age/LICENSE" | ||
# man pages | ||
install -Dm644 "./docs/git-age.1.gz" "${pkgdir}/usr/share/man/man1/git-age.1.gz" | ||
commit_author: | ||
name: goreleaserbot | ||
email: [email protected] | ||
commit_msg_template: 'chore: update to {{ .Tag }}' |