termux-packages/packages/lf/build.sh

38 lines
1.6 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/gokcehan/lf
TERMUX_PKG_DESCRIPTION="Terminal file manager"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_VERSION=16
TERMUX_PKG_SRCURL=https://github.com/gokcehan/lf/archive/r$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=92031b31c194f0af11fc0f00d575db0dc9bb2c6c80bccc73fa19de02e82d00b1
TERMUX_PKG_CONFFILES="etc/lf/lfrc"
termux_step_make() {
termux_setup_golang
export GOPATH="$TERMUX_PKG_BUILDDIR"
mkdir -p "$GOPATH/src/github.com/gokcehan"
ln -sf "$TERMUX_PKG_SRCDIR" "$GOPATH/src/github.com/gokcehan/lf"
cd "$GOPATH/src/github.com/gokcehan/lf"
go build -ldflags="-X main.gVersion=r$TERMUX_PKG_VERSION" -trimpath
}
termux_step_make_install() {
cd "$GOPATH/src/github.com/gokcehan/lf"
install -Dm755 -t "$TERMUX_PREFIX/bin" lf
install -Dm644 -T etc/lfrc.example "$TERMUX_PREFIX/etc/lf/lfrc"
install -Dm644 -t "$TERMUX_PREFIX/share/applications" lf.desktop
install -Dm644 -t "$TERMUX_PREFIX/share/doc/lf" README.md
install -Dm644 -t "$TERMUX_PREFIX/share/man/man1" lf.1
# bash integration
install -Dm644 -t "$TERMUX_PREFIX/etc/profile.d" etc/lfcd.sh
# csh integration
install -Dm644 -t "$TERMUX_PREFIX/etc/profile.d" etc/lf.csh etc/lfcd.csh
# fish integration
install -Dm644 -t "$TERMUX_PREFIX/share/fish/vendor_functions.d" etc/lfcd.fish
install -Dm644 -t "$TERMUX_PREFIX/share/fish/vendor_completions.d" etc/lf.fish
# vim integration
install -Dm644 -t "$TERMUX_PREFIX/share/vim/vimfiles/plugin" etc/lf.vim
# zsh integration
install -Dm644 -T etc/lfcd.sh "$TERMUX_PREFIX/share/zsh/site-functions/lfcd"
install -Dm644 -T etc/lf.zsh "$TERMUX_PREFIX/share/zsh/site-functions/_lf"
}