mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
54 lines
1.8 KiB
Tcl
54 lines
1.8 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
PortGroup github 1.0
|
|
|
|
github.setup jghub sd-switchdir 3.3.3 v
|
|
revision 0
|
|
checksums rmd160 052dd5f4ccdd041d7d417a0c3a7dfec4b85080bf \
|
|
sha256 15bbd1f3abcfdd2f3bf1a886f5355a716b7b54a2293282859f9cb727eb350c0a \
|
|
size 26316
|
|
|
|
description cd replacement with pattern matching against a frecency-ranked directory stack
|
|
|
|
long_description SD provides two shell commands, sd and ds, for rapid navigation between \
|
|
previously visited directories. Directory ranking is derived from the full \
|
|
sequence of recorded visits using a configurable sliding window "frecency" model. \
|
|
sd acts as a drop-in replacement for the cd builtin\; ds exposes the ranked \
|
|
directory stack and provides inspection, management, and interactive \
|
|
selection via fzf if available.
|
|
|
|
categories sysutils
|
|
license MIT
|
|
maintainers {gmail.com:veedeehjay @jghub} openmaintainer
|
|
platforms any
|
|
supported_archs noarch
|
|
installs_libs no
|
|
|
|
github.tarball_from archive
|
|
|
|
use_configure no
|
|
|
|
build {}
|
|
|
|
set docdir ${prefix}/share/doc/${subport}
|
|
set scriptdir ${prefix}/etc/profile.d
|
|
|
|
destroot {
|
|
xinstall -d ${destroot}${docdir} ${destroot}${scriptdir}
|
|
xinstall -m 0644 -W ${worksrcpath} \
|
|
CHANGELOG.md \
|
|
LICENSE \
|
|
README.md \
|
|
${destroot}${docdir}
|
|
xinstall ${worksrcpath}/sd.ksh ${destroot}${scriptdir}
|
|
}
|
|
|
|
notes "
|
|
To use SD, add the following line to your shell rc file:
|
|
|
|
. ${scriptdir}/sd.ksh
|
|
|
|
After sourcing, run 'ds -m' for full documentation including configuration.
|
|
"
|