diff options
Diffstat (limited to 'package/ncdu')
-rw-r--r-- | package/ncdu/Config.in | 7 | ||||
-rw-r--r-- | package/ncdu/ncdu.mk | 15 |
2 files changed, 22 insertions, 0 deletions
diff --git a/package/ncdu/Config.in b/package/ncdu/Config.in new file mode 100644 index 000000000..dac744410 --- /dev/null +++ b/package/ncdu/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_NCDU + bool "ncdu" + select BR2_PACKAGE_NCURSES + help + ncdu is a disk usage analyzer with an ncurses interface + + http://dev.yorhel.nl/ncdu diff --git a/package/ncdu/ncdu.mk b/package/ncdu/ncdu.mk new file mode 100644 index 000000000..06f5e714d --- /dev/null +++ b/package/ncdu/ncdu.mk @@ -0,0 +1,15 @@ +############################################################# +# +# ncdu +# +############################################################# + +NCDU_VERSION = 1.9 +NCDU_SITE = http://dev.yorhel.nl/download/ + +NCDU_DEPENDENCIES = ncurses + +NCDU_LICENSE = MIT +NCDU_LICENSE_FILES = COPYING + +$(eval $(autotools-package)) |