mirror of
https://github.com/SinTan1729/lure-repo.git
synced 2024-12-26 06:48:35 -06:00
Add fzf
This commit is contained in:
parent
6e7681b5c3
commit
706f49a0f0
1 changed files with 49 additions and 0 deletions
49
fzf/lure.sh
Normal file
49
fzf/lure.sh
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
name='fzf'
|
||||||
|
version=VERSION
|
||||||
|
release=1
|
||||||
|
desc='A command-line fuzzy finder'
|
||||||
|
homepage='https://github.com/junegunn/fzf'
|
||||||
|
architectures=('amd64')
|
||||||
|
maintainer='SinTan1729'
|
||||||
|
license=('MIT')
|
||||||
|
provides=('fzf' 'fzf-tmux')
|
||||||
|
conflicts=('fzf' 'fzf-tmux')
|
||||||
|
git_repo='junegunn/fzf'
|
||||||
|
|
||||||
|
sources=()
|
||||||
|
checksums=()
|
||||||
|
|
||||||
|
version() {
|
||||||
|
printf "$(curl --silent "https://api.github.com/repos/${git_repo}/releases/latest" | grep -Eo '"tag_name": "(.*)"' | sed -E 's/.*"([^"]+)".*/\1/')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
# Pull sources
|
||||||
|
echo Pulling ${name} ${version}
|
||||||
|
curl -L "https://github.com/${git_repo}/releases/download/${version}/fzf-${version}-linux_amd64.tar.gz" -o ${name}.tar.gz
|
||||||
|
curl -L "https://raw.githubusercontent.com/${git_repo}/master/bin/${name}-tmux" -o ${name}-tmux
|
||||||
|
curl -L "https://raw.githubusercontent.com/${git_repo}/master/man/man1/${name}.1" -o ${name}.1
|
||||||
|
curl -L "https://raw.githubusercontent.com/${git_repo}/master/man/man1/${name}-tmux.1" -o ${name}-tmux.1
|
||||||
|
curl -L "https://raw.githubusercontent.com/${git_repo}/master/shell/completion.bash" -o ${name}.bash
|
||||||
|
curl -L "https://raw.githubusercontent.com/${git_repo}/master/shell/completion.zsh" -o ${name}.zsh
|
||||||
|
curl -L "https://raw.githubusercontent.com/${git_repo}/master/shell/key-bindings.bash" -o key-bindings.zsh
|
||||||
|
curl -L "https://raw.githubusercontent.com/${git_repo}/master/shell/key-bindings.zsh" -o key-bindings.bash
|
||||||
|
curl -L "https://raw.githubusercontent.com/${git_repo}/master/shell/key-bindings.fish" -o key-bindings.fish
|
||||||
|
# Build package
|
||||||
|
echo Creating the package
|
||||||
|
tar -xzf "${name}.tar.gz" -C .
|
||||||
|
# Binaries
|
||||||
|
install -Dm755 "./${name}" "${pkgdir}/usr/local/bin/${name}"
|
||||||
|
install -Dm755 "./${name}-tmux" "${pkgdir}/usr/local/bin/${name}-tmux"
|
||||||
|
# Manpages
|
||||||
|
install -Dm644 "./${name}.1" "${pkgdir}/usr/local/share/man/man1/${name}.1"
|
||||||
|
install -Dm644 "./${name}-tmux.1" "${pkgdir}/usr/local/share/man/man1/${name}-tmux.1"
|
||||||
|
# Autocomplete
|
||||||
|
command -v zsh &> /dev/null && install -Dm644 "./${name}.zsh" "${pkgdir}/usr/share/zsh/site-functions/_${name}"
|
||||||
|
command -v bash &> /dev/null && install -Dm644 "./${name}.bash" "${pkgdir}/usr/share/bash-completion/completions/${name}"
|
||||||
|
# Key-bindings
|
||||||
|
command -v fish &> /dev/null && install -Dm644 key-bindings.fish "${pkgdir}/usr/share/fish/vendor_functions.d/${name}_key_bindings.fish"
|
||||||
|
command -v bash &> /dev/null && install -Dm644 key-bindings.bash "${pkgdir}/usr/share/${name}/key-bindings.bash"
|
||||||
|
command -v zsh &> /dev/null && install -Dm644 key-bindings.zsh "${pkgdir}/usr/share/${name}/key-bindings.zsh"
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue