X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/9a653b4634befb4b6cf76db5e69cbcf2cbe0f440..dd6f8fa7dfb2546c73b82c101d125129eea621f5:/packages/fzf/build.sh diff --git a/packages/fzf/build.sh b/packages/fzf/build.sh index 6bb6ed62..ed9a1cc4 100644 --- a/packages/fzf/build.sh +++ b/packages/fzf/build.sh @@ -1,6 +1,6 @@ TERMUX_PKG_HOMEPAGE=https://github.com/junegunn/fzf TERMUX_PKG_DESCRIPTION="Command-line fuzzy finder" -TERMUX_PKG_VERSION=0.11.1 +TERMUX_PKG_VERSION=0.12.1 TERMUX_PKG_SRCURL=https://github.com/junegunn/fzf/archive/${TERMUX_PKG_VERSION}.tar.gz TERMUX_PKG_FOLDERNAME=fzf-${TERMUX_PKG_VERSION} TERMUX_PKG_BUILD_IN_SRC="yes" @@ -16,6 +16,7 @@ termux_step_make_install () { export CGO_CFLAGS="-I$TERMUX_PREFIX/include -L$TERMUX_PREFIX/lib" export CGO_LDFLAGS="-L$TERMUX_PREFIX/lib" + mkdir -p $GOPATH/src/github.com/junegunn/fzf/src/vendor/github.com/junegunn/{go-runewidth,go-shellwords} for file in runewidth.go runewidth_posix.go; do curl -o $GOPATH/src/github.com/junegunn/fzf/src/vendor/github.com/junegunn/go-runewidth/$file \ https://raw.githubusercontent.com/junegunn/go-runewidth/master/$file @@ -37,9 +38,14 @@ termux_step_make_install () { # Install the vim plugin: mkdir -p $TERMUX_PREFIX/share/vim/vim74/plugin - cp $TERMUX_PKG_SRCDIR/plugin/fzf.vim $TERMUX_PREFIX/share/vim/vim74/plugin + cp $TERMUX_PKG_SRCDIR/plugin/fzf.vim $TERMUX_PREFIX/share/vim/vim74/plugin/fzf.vim # Install the nvim plugin: mkdir -p $TERMUX_PREFIX/share/nvim/runtime/plugin cp $TERMUX_PKG_SRCDIR/plugin/fzf.vim $TERMUX_PREFIX/share/nvim/runtime/plugin/ } + +termux_step_post_massage () { + # Remove so that the vim build doesn't add it to vim-runtime: + rm $TERMUX_PREFIX/share/vim/vim74/plugin/fzf.vim +}