mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
82 lines
2.3 KiB
Bash
82 lines
2.3 KiB
Bash
# Maintainer: Thore Bödecker <foxxx0@archlinux.org>
|
|
# Maintainer: Morten Linderud <foxboron@archlinux.org>
|
|
# Maintainer: Filipe Laíns (FFY00) <lains@archlinux.org>
|
|
# Contributor: Pierre Neidhardt <ambrevar@gmail.com>
|
|
# Contributor: Hermann Zahnweh (eigengrau)
|
|
# Contributor: Andy Weidenbaum <archbaum@gmail.com>
|
|
# Contributor: foalsrock <foalsrock at gmail dot-com>
|
|
# Contributor: jebaum <jebaum at ucla dot edu>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - generalize arch-dependent install line
|
|
|
|
buildarch=28
|
|
|
|
pkgname=fzf
|
|
pkgver=0.25.1
|
|
pkgrel=2
|
|
pkgdesc='Command-line fuzzy finder'
|
|
arch=('x86_64')
|
|
url='https://github.com/junegunn/fzf'
|
|
license=('MIT')
|
|
depends=('bash')
|
|
makedepends=('git' 'go')
|
|
optdepends=('fish: fish keybindings'
|
|
'tmux: fzf-tmux script for launching fzf in a tmux pane'
|
|
'vim: plugin'
|
|
'zsh: zsh keybindings')
|
|
source=("git+https://github.com/junegunn/fzf.git#tag=${pkgver}?signed")
|
|
validpgpkeys=('B5FB4AB5F32EC1A0C9DE9637254BC280FEF9C627')
|
|
sha512sums=('SKIP')
|
|
|
|
prepare() {
|
|
cd "${pkgname}"
|
|
sed -i 's/-w /-w -linkmode external /' Makefile
|
|
}
|
|
|
|
build() {
|
|
cd "${pkgname}"
|
|
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
|
|
}
|
|
|
|
check() {
|
|
cd "${pkgname}"
|
|
export CGO_LDFLAGS="${LDFLAGS}"
|
|
export CGO_CFLAGS="${CFLAGS}"
|
|
export CGO_CPPFLAGS="${CPPFLAGS}"
|
|
export CGO_CXXFLAGS="${CXXFLAGS}"
|
|
export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
|
|
go test ./...
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}"
|
|
|
|
## Man page
|
|
install -Dm644 man/man1/fzf.1 "$pkgdir"/usr/share/man/man1/fzf.1
|
|
|
|
## License
|
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/fzf/LICENSE
|
|
|
|
## Binaries
|
|
install -dm755 "$pkgdir"/usr/bin
|
|
install -m755 bin/fzf-tmux "$pkgdir"/usr/bin/
|
|
install -Dm755 target/fzf-linux_* "$pkgdir"/usr/bin/fzf
|
|
|
|
## Completion and keybindings
|
|
install -dm755 "$pkgdir"/usr/share/fzf
|
|
install -m644 shell/*.bash shell/*.zsh "$pkgdir"/usr/share/fzf
|
|
|
|
## Fish keybindings
|
|
install -Dm644 shell/key-bindings.fish "$pkgdir"/usr/share/fish/vendor_functions.d/fzf_key_bindings.fish
|
|
|
|
## Vim plugin
|
|
install -Dm644 doc/fzf.txt "$pkgdir"/usr/share/vim/vimfiles/doc/fzf.txt
|
|
install -Dm644 plugin/fzf.vim "$pkgdir"/usr/share/vim/vimfiles/plugin/fzf.vim
|
|
}
|
|
|