# Contributor: Leo # Maintainer: Miles Alan pkgname=lf pkgver=30 pkgrel=3 pkgdesc="Terminal filemanager written in Go with vim-style keybindings" options="chmod-clean net" url="https://github.com/gokcehan/lf" license="MIT" arch="all" makedepends="go" subpackages=" $pkgname-doc $pkgname-bash-completion $pkgname-zsh-completion $pkgname-fish-completion " source="$pkgname-$pkgver.tar.gz::https://github.com/gokcehan/lf/archive/r$pkgver.tar.gz" builddir="$srcdir/lf-r$pkgver" export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}" export GOTMPDIR="${GOTMPDIR:-"$srcdir"}" export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}" build() { go build -v -o bin/$pkgname } check() { go test ./... } package() { install -Dm0755 bin/$pkgname -t "$pkgdir"/usr/bin # Manpages install -Dm0644 lf.1 "$pkgdir"/usr/share/man/man1/lf.1 # .desktop file for menus install -Dm0644 lf.desktop -t "$pkgdir"/usr/share/applications # Shell completions install -Dm0644 etc/lf.bash "$pkgdir"/usr/share/bash-completion/completions/lf install -Dm0644 etc/lf.zsh "$pkgdir"/usr/share/zsh/site-functions/_lf install -Dm0644 etc/lf.fish -t "$pkgdir"/usr/share/fish/vendor_completions.d } sha512sums=" 2318b8b1ebb92cec5247b3f8819492182085776bc437b223a92377f731f26a85a7b9bf3c475b31ee28ba204cc2e9abf8330e7a64b7d57631da9cb285aa80326d lf-30.tar.gz "