5d2ae53670
Added: - Added support for the MISSING / mi= dircolors variable for broken symlink targets. - Add support for theme from zwpaper (#452) - Update theme to support partial themes zwpaper (#591) - Update minimal rust version to 1.42.0 from zwpaper (#534) - NO_COLOR environment variable support from (AnInternetTroll) Changed: - Change size to use btyes in classic mode from meain - Show tree edge before name block or first column if no name block from zwpaper (#468) - Added icons for Perl modules (.pm) and test scripts (.t) - Add --config-file flag to read configuration file from a custom location - Clarify custom date format for date field in configuration file in the README. Fixed: - Support all strftime like formatting (#532)
21 lines
563 B
Makefile
21 lines
563 B
Makefile
# $NetBSD: Makefile,v 1.6 2022/01/16 16:51:31 pin Exp $
|
|
|
|
DISTNAME= lsd-0.21.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=Peltoche/}
|
|
|
|
MAINTAINER= pin@NetBSD.org
|
|
HOMEPAGE= https://github.com/Peltoche/lsd/
|
|
COMMENT= The next gen ls command
|
|
LICENSE= apache-2.0
|
|
|
|
.include "cargo-depends.mk"
|
|
|
|
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"
|