126b9bdf58
Closes: #32124 [via git-merge-pr]
36 lines
1 KiB
Bash
36 lines
1 KiB
Bash
# Template file for 'nnn'
|
|
pkgname=nnn
|
|
version=4.2
|
|
revision=1
|
|
build_style=gnu-makefile
|
|
make_install_target="install install-desktop"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="ncurses-devel readline-devel"
|
|
short_desc="Missing terminal file browser for X"
|
|
maintainer="Dennis Kraus <kraus@posteo.de>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://github.com/jarun/nnn"
|
|
changelog="https://raw.githubusercontent.com/jarun/nnn/master/CHANGELOG"
|
|
distfiles="https://github.com/jarun/nnn/archive/v${version}.tar.gz"
|
|
checksum=5675f9fe53bddfd92681ef88bf6c0fab3ad897f9e74dd6cdff32fe1fa62c687f
|
|
|
|
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
|
|
makedepends+=" musl-fts-devel"
|
|
fi
|
|
|
|
pre_build() {
|
|
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
|
|
export LDLIBS=-lfts
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
vinstall misc/auto-completion/bash/nnn-completion.bash 644 \
|
|
usr/share/bash-completion/completions nnn
|
|
vinstall misc/auto-completion/zsh/_nnn 644 \
|
|
usr/share/zsh/site-functions
|
|
vinstall misc/auto-completion/fish/nnn.fish 644 \
|
|
usr/share/fish/vendor_completions.d
|
|
|
|
vlicense LICENSE
|
|
}
|