diff options
author | pin <pin@pkgsrc.org> | 2021-03-07 16:46:37 +0000 |
---|---|---|
committer | pin <pin@pkgsrc.org> | 2021-03-07 16:46:37 +0000 |
commit | 4a8d4e85d902a30eda8a27436959c551bc8ea6bb (patch) | |
tree | b072773468d2c661eb3d7b8b9403fbaa290dceec /sysutils/lsd/Makefile | |
parent | 6a4756ce0f4b2a28e05cc64ab0cfa94177a2cae8 (diff) | |
download | pkgsrc-4a8d4e85d902a30eda8a27436959c551bc8ea6bb.tar.gz |
sysutils/lsd: update to 0.20.1
0.20.1
This is essentially 0.20.0, but with a fix that caused 0.20.0 fail for some
builds.
Fixed:
-Fix flaky tree --all test from meain
0.20.0
Added:
-Add support for changing the string between icon and name from
Finn Hediger #363
-Add support for TIME_STYLE environment variable from 999eagle
-Add man page from edneville
Changed:
-Not showing . and .. when --tree with --all from zwpaper #477
Fixed:
-Fix handling blocks passed without -l in cli from meain
-Fix sorting of . and .. when used with folder from meain
-Fix arg parsing for flags that allow multiple values from meain
-Fix tests involving config file for sorting from meain
Diffstat (limited to 'sysutils/lsd/Makefile')
-rw-r--r-- | sysutils/lsd/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysutils/lsd/Makefile b/sysutils/lsd/Makefile index 7d03b75e30a..b4abd8eeaa0 100644 --- a/sysutils/lsd/Makefile +++ b/sysutils/lsd/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2021/01/05 19:19:47 pin Exp $ +# $NetBSD: Makefile,v 1.3 2021/03/07 16:46:37 pin Exp $ -DISTNAME= lsd-0.19.0 +DISTNAME= lsd-0.20.1 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_GITHUB:=Peltoche/} @@ -13,11 +13,11 @@ LICENSE= apache-2.0 USE_LANGUAGES+= c # rust, but needs a toolchain to link -INSTALLATION_DIRS= bin +INSTALLATION_DIRS= bin share/doc/lsd do-install: ${INSTALL_PROGRAM} ${WRKSRC}/target/release/lsd ${DESTDIR}${PREFIX}/bin - + ${INSTALL_DATA} ${WRKSRC}/doc/lsd.md ${DESTDIR}${PREFIX}/share/doc/lsd .include "../../lang/rust/cargo.mk" .include "../../mk/bsd.pkg.mk" |