Add ppc64le binaries (#3067)

Little-endian 64 bit PowerPC (ppc64le) is the "normal" PowerPC
architecture supported by standard Linux distributions (RedHat, SUSE,
Ubuntu, etc.).

Add support for this architecture in the install script, and add binary
builds for it as well.
This commit is contained in:
Philipp Wagner 2022-11-30 13:20:05 +01:00 committed by Junegunn Choi
parent 8e283f512a
commit de0da86bd7
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627
2 changed files with 2 additions and 0 deletions

View File

@ -73,6 +73,7 @@ builds:
- arm
- arm64
- loong64
- ppc64le
goarm:
- 5
- 6

View File

@ -176,6 +176,7 @@ case "$archi" in
Linux\ armv8*) download fzf-$version-linux_arm64.tar.gz ;;
Linux\ aarch64*) download fzf-$version-linux_arm64.tar.gz ;;
Linux\ loongarch64) download fzf-$version-linux_loong64.tar.gz ;;
Linux\ ppc64le) download fzf-$version-linux_ppc64le.tar.gz ;;
Linux\ *64) download fzf-$version-linux_amd64.tar.gz ;;
FreeBSD\ *64) download fzf-$version-freebsd_amd64.tar.gz ;;
OpenBSD\ *64) download fzf-$version-openbsd_amd64.tar.gz ;;