Skip to content

Commit

Permalink
fix(goreleaser): different terminfo paths on linux & macos, address d…
Browse files Browse the repository at this point in the history
…eprecation msgs (#990)
  • Loading branch information
vedantmgoyal9 authored Feb 27, 2025
1 parent d48241d commit 5aaea3d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ checksum:
archives:
- id: win-x64
formats: [binary]
builds: [windows-x86_64]
ids: [windows-x86_64]
name_template: "{{ .ProjectName }}-portable-x86_64"
- id: win-arm64
formats: [binary]
builds: [windows-arm64]
ids: [windows-arm64]
name_template: "{{ .ProjectName }}-portable-aarch64"

universal_binaries:
Expand Down Expand Up @@ -141,7 +141,7 @@ app_bundles:
nfpms:
- formats: [deb, rpm]
id: deb-arm64-wayland
builds: [linux-arm64-wayland]
ids: [linux-arm64-wayland]
file_name_template: "{{- trimsuffix .ConventionalFileName .ConventionalExtension -}}_wayland"
package_name: rioterm
dependencies: [libc6 (>= 2.35), libstdc++6 (>= 11)]
Expand All @@ -151,15 +151,15 @@ nfpms:
contents:
- src: ./misc/rio.desktop
dst: /usr/share/applications/rio.desktop
- src: ./misc/72/rio
- src: ./misc/r/rio
dst: /usr/share/terminfo/r/rio
- src: ./misc/logo.svg
dst: /usr/share/icons/hicolor/scalable/apps/rio.svg
section: admin
priority: optional
- formats: [deb, rpm]
id: deb-arm64-x11
builds: [linux-arm64-x11]
ids: [linux-arm64-x11]
file_name_template: "{{- trimsuffix .ConventionalFileName .ConventionalExtension -}}_x11"
package_name: rioterm
dependencies: [libc6 (>= 2.35), libstdc++6 (>= 11)]
Expand All @@ -169,15 +169,15 @@ nfpms:
contents:
- src: ./misc/rio.desktop
dst: /usr/share/applications/rio.desktop
- src: ./misc/72/rio
- src: ./misc/r/rio
dst: /usr/share/terminfo/r/rio
- src: ./misc/logo.svg
dst: /usr/share/icons/hicolor/scalable/apps/rio.svg
section: admin
priority: optional
- formats: [deb, rpm]
id: deb-x64-wayland
builds: [linux-x64-wayland]
ids: [linux-x64-wayland]
file_name_template: "{{- trimsuffix .ConventionalFileName .ConventionalExtension -}}_wayland"
package_name: rioterm
dependencies: [libc6 (>= 2.35), libstdc++6 (>= 11)]
Expand All @@ -187,15 +187,15 @@ nfpms:
contents:
- src: ./misc/rio.desktop
dst: /usr/share/applications/rio.desktop
- src: ./misc/72/rio
- src: ./misc/r/rio
dst: /usr/share/terminfo/r/rio
- src: ./misc/logo.svg
dst: /usr/share/icons/hicolor/scalable/apps/rio.svg
section: admin
priority: optional
- formats: [deb, rpm]
id: deb-x64-x11
builds: [linux-x64-x11]
ids: [linux-x64-x11]
file_name_template: "{{- trimsuffix .ConventionalFileName .ConventionalExtension -}}_x11"
package_name: rioterm
dependencies: [libc6 (>= 2.35), libstdc++6 (>= 11)]
Expand All @@ -205,7 +205,7 @@ nfpms:
contents:
- src: ./misc/rio.desktop
dst: /usr/share/applications/rio.desktop
- src: ./misc/72/rio
- src: ./misc/r/rio
dst: /usr/share/terminfo/r/rio
- src: ./misc/logo.svg
dst: /usr/share/icons/hicolor/scalable/apps/rio.svg
Expand Down

0 comments on commit 5aaea3d

Please sign in to comment.