added fzf shell helper scripts to the package (#404)
[termux-packages] / packages / fzf / build.sh
CommitLineData
9a653b46
FF
1TERMUX_PKG_HOMEPAGE=https://github.com/junegunn/fzf
2TERMUX_PKG_DESCRIPTION="Command-line fuzzy finder"
bf6839dd 3TERMUX_PKG_VERSION=0.13.4
9a653b46
FF
4TERMUX_PKG_SRCURL=https://github.com/junegunn/fzf/archive/${TERMUX_PKG_VERSION}.tar.gz
5TERMUX_PKG_FOLDERNAME=fzf-${TERMUX_PKG_VERSION}
6TERMUX_PKG_BUILD_IN_SRC="yes"
7TERMUX_PKG_DEPENDS="bash, ncurses"
8
9termux_step_make_install () {
10 export GOPATH=$TERMUX_PKG_TMPDIR
11 cd $GOPATH
12 mkdir -p src/github.com/junegunn/fzf
13 cp -Rf $TERMUX_PKG_SRCDIR/* src/github.com/junegunn/fzf
14
15 termux_setup_golang
16 export CGO_CFLAGS="-I$TERMUX_PREFIX/include -L$TERMUX_PREFIX/lib"
17 export CGO_LDFLAGS="-L$TERMUX_PREFIX/lib"
18
9565aba6 19 mkdir -p $GOPATH/src/github.com/junegunn/fzf/src/vendor/github.com/junegunn/{go-runewidth,go-shellwords}
9a653b46
FF
20 for file in runewidth.go runewidth_posix.go; do
21 curl -o $GOPATH/src/github.com/junegunn/fzf/src/vendor/github.com/junegunn/go-runewidth/$file \
22 https://raw.githubusercontent.com/junegunn/go-runewidth/master/$file
23 done
24 for file in shellwords.go util_posix.go; do
25 curl -o $GOPATH/src/github.com/junegunn/fzf/src/vendor/github.com/junegunn/go-shellwords/$file \
26 https://raw.githubusercontent.com/junegunn/go-shellwords/master/$file
27 done
28
29 cd $GOPATH/src/github.com/junegunn/fzf/src/fzf
30 CGO_ENABLED=1 go build -a -ldflags="-extldflags=-pie" -o $TERMUX_PREFIX/bin/fzf
31
32 # Install fzf-tmux, a bash script for launching fzf in a tmux pane:
33 cp $TERMUX_PKG_SRCDIR/bin/fzf-tmux $TERMUX_PREFIX/bin
34
35 # Install the fzf.1 man page:
36 mkdir -p $TERMUX_PREFIX/share/man/man1/
37 cp $TERMUX_PKG_SRCDIR/man/man1/fzf.1 $TERMUX_PREFIX/share/man/man1/
38
39 # Install the vim plugin:
40 mkdir -p $TERMUX_PREFIX/share/vim/vim74/plugin
86053f6e 41 cp $TERMUX_PKG_SRCDIR/plugin/fzf.vim $TERMUX_PREFIX/share/vim/vim74/plugin/fzf.vim
9a653b46 42
2c486815
B
43 #Install bash,zsh, fish helper scripts
44 mkdir -p "$TERMUX_PREFIX/share/fzf"
45 cp $TERMUX_PKG_SRCDIR/shell/* "$TERMUX_PREFIX/share/fzf"
46
9a653b46
FF
47 # Install the nvim plugin:
48 mkdir -p $TERMUX_PREFIX/share/nvim/runtime/plugin
49 cp $TERMUX_PKG_SRCDIR/plugin/fzf.vim $TERMUX_PREFIX/share/nvim/runtime/plugin/
50}
86053f6e 51
1fe99be6 52termux_step_post_massage () {
86053f6e
FF
53 # Remove so that the vim build doesn't add it to vim-runtime:
54 rm $TERMUX_PREFIX/share/vim/vim74/plugin/fzf.vim
55}