mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
c0e8fdd7fa
``` dua (-> Disk Usage Analyzer) is a tool to conveniently learn about the usage of disk space of a given directory. It's parallel by default and will max out your SSD, providing relevant information as fast as possible. Optionally delete superfluous data, and do so more quickly than rm. ``` OK sthen@ and rsadowski@, thanks!
23 lines
420 B
Makefile
23 lines
420 B
Makefile
COMMENT = disk usage analyzer
|
|
|
|
V = 2.33.0
|
|
GH_ACCOUNT = Byron
|
|
GH_PROJECT = dua-cli
|
|
GH_TAGNAME = v${V}
|
|
PKGNAME = dua-${V}
|
|
|
|
CATEGORIES = sysutils
|
|
MAINTAINER = Edd Barrett <edd@openbsd.org>
|
|
|
|
# MIT + deps
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += ${MODCARGO_WANTLIB}
|
|
|
|
MODULES = devel/cargo
|
|
CONFIGURE_STYLE = cargo
|
|
SEPARATE_BUILD = Yes
|
|
|
|
.include "crates.inc"
|
|
.include <bsd.port.mk>
|