1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 19:55:26 +03:00
aports/community/lf/APKBUILD
2023-02-15 18:49:40 +01:00

50 lines
1.3 KiB
Text

# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Miles Alan <m@milesalan.com>
pkgname=lf
pkgver=28
pkgrel=2
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/completions
}
sha512sums="
ae52248b5934e3c136c54e0df184a6a1d3219f6e6ddebdf7263dc7516f7f1344331d7c5640cb83b7d483f291524a56271b2209454981742bf702b177acfffbc0 lf-28.tar.gz
"