diff options
author | davidovski <david@davidovski.xyz> | 2022-05-04 23:52:30 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-04 23:52:30 +0100 |
commit | 739c65c54cb0e957df5e9b76f93fb02554e5cac3 (patch) | |
tree | 09ddfa0a342f3ea9de136cb50abdd79821bf1b53 /repo/util/fzf/fzf.xibuild | |
parent | 4c585ad54388285500fd18a6aaa516894e0f2c16 (diff) |
moved everything to new file formatting
Diffstat (limited to 'repo/util/fzf/fzf.xibuild')
-rw-r--r-- | repo/util/fzf/fzf.xibuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/repo/util/fzf/fzf.xibuild b/repo/util/fzf/fzf.xibuild new file mode 100644 index 0000000..6926f2f --- /dev/null +++ b/repo/util/fzf/fzf.xibuild @@ -0,0 +1,52 @@ +#!/bin/sh + +MAKEDEPS="git go" +DEPS="sh" + +PKG_VER=0.29.0 +SOURCE=https://github.com/junegunn/fzf.git +BRANCH=$PKG_VER +DESC="Command-line fuzzy finder" + +prepare () { + sed -i 's/-w /-w -linkmode external /' Makefile + sed -i '61s,.*, defaultCommand = `command find -L . -mindepth 1 -path "*/\.*" -prune -o -type f -print -o -type l -print 2> /dev/null | cut -b3-`,' src/constants.go +} + +build () { + export CGO_LDFLAGS="${LDFLAGS}" + export CGO_CFLAGS="${CFLAGS}" + export CGO_CPPFLAGS="${CPPFLAGS}" + export CGO_CXXFLAGS="${CXXFLAGS}" + export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw" + make + +} + +package () { + ## Man page + install -Dm644 man/man1/fzf.1 "$PKG_DEST"/usr/share/man/man1/fzf.1 + install -Dm644 man/man1/fzf-tmux.1 "$PKG_DEST"/usr/share/man/man1/fzf-tmux.1 + + ## License + install -Dm644 LICENSE "$PKG_DEST"/usr/share/licenses/fzf/LICENSE + + ## Binaries + install -dm755 "$PKG_DEST"/usr/bin + install -m755 bin/fzf-tmux "$PKG_DEST"/usr/bin/ + install -Dm755 target/fzf-linux_amd64 "$PKG_DEST"/usr/bin/fzf + + ## Completion and keybindings + install -dm755 "$PKG_DEST"/usr/share/fzf + install -m644 shell/*.bash shell/*.zsh "$PKG_DEST"/usr/share/fzf + + ## Fish keybindings + install -Dm644 shell/key-bindings.fish "$PKG_DEST"/usr/share/fish/vendor_functions.d/fzf_key_bindings.fish + + ## Vim plugin + install -Dm644 doc/fzf.txt "$PKG_DEST"/usr/share/vim/vimfiles/doc/fzf.txt + install -Dm644 plugin/fzf.vim "$PKG_DEST"/usr/share/vim/vimfiles/plugin/fzf.vim + +} + + |