diff options
author | Cem Keylan <cem@ckyln.com> | 2020-11-02 10:26:44 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-11-02 10:26:44 +0300 |
commit | 54d45e17ad79179cb1881c7908d3a6d449803bef (patch) | |
tree | 62028d512f1f73398f48b0e4f256d75dab1febe0 | |
parent | 02f41705d1970be0f50fe793f5d0b9daf69146e0 (diff) | |
download | repository-54d45e17ad79179cb1881c7908d3a6d449803bef.tar.gz |
fzf: bump to 0.24.1
-rwxr-xr-x | community/fzf/build | 12 | ||||
-rw-r--r-- | community/fzf/checksums | 2 | ||||
-rw-r--r-- | community/fzf/depends | 2 | ||||
-rw-r--r-- | community/fzf/sources | 2 | ||||
-rw-r--r-- | community/fzf/version | 2 |
5 files changed, 11 insertions, 9 deletions
diff --git a/community/fzf/build b/community/fzf/build index bdd90d7c..a8c6f07f 100755 --- a/community/fzf/build +++ b/community/fzf/build @@ -1,10 +1,12 @@ #!/bin/sh -e -make -make install +export GOPATH=$PWD/gopath +trap "go clean -modcache" EXIT INT +go mod vendor -mkdir -p "$1/usr/bin" -cp bin/* "$1/usr/bin/" +make FZF_VERSION="$2" FZF_REVISION="${2##*.}" +make FZF_VERSION="$2" FZF_REVISION="${2##*.}" install -mkdir "$1/usr/share" +mkdir -p "$1/usr/bin" "$1/usr/share" +cp bin/* "$1/usr/bin/" cp -r man "$1/usr/share/man" diff --git a/community/fzf/checksums b/community/fzf/checksums index 6faa4f90..a7a3a7b7 100644 --- a/community/fzf/checksums +++ b/community/fzf/checksums @@ -1 +1 @@ -07576e47d2d446366eb7806fd9f825a2340cc3dc7f799f1f53fe038ca9bf30f6 0.23.1.tar.gz +35e8f57319d4b0ad3297251f4487b15203d288a081c1019d67f80758264b9d45 0.24.1.tar.gz diff --git a/community/fzf/depends b/community/fzf/depends index 0146f0f5..f4ed492e 100644 --- a/community/fzf/depends +++ b/community/fzf/depends @@ -1,2 +1,2 @@ -go make git make +go make diff --git a/community/fzf/sources b/community/fzf/sources index b4ce37d5..4bf393d6 100644 --- a/community/fzf/sources +++ b/community/fzf/sources @@ -1 +1 @@ -https://github.com/junegunn/fzf/archive/0.23.1.tar.gz +https://github.com/junegunn/fzf/archive/0.24.1.tar.gz diff --git a/community/fzf/version b/community/fzf/version index 785269ae..ba168aec 100644 --- a/community/fzf/version +++ b/community/fzf/version @@ -1 +1 @@ -0.23.1 1 +0.24.1 1 |