summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-support/ncdu/ncdu_1.22.bb25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/ncdu/ncdu_1.22.bb b/meta-oe/recipes-support/ncdu/ncdu_1.22.bb
new file mode 100644
index 0000000000..578ae4a5ed
--- /dev/null
+++ b/meta-oe/recipes-support/ncdu/ncdu_1.22.bb
@@ -0,0 +1,25 @@
1SUMMARY = "NCurses Disk Usage"
2DESCRIPTION = "\
3 ncdu is a curses-based version of the well-known 'du', and provides a \
4 fast way to see what directories are using your disk space. \
5"
6HOMEPAGE = "https://dev.yorhel.nl/ncdu"
7BUGTRACKER = "https://code.blicky.net/yorhel/ncdu/issues"
8SECTION = "console/utils"
9
10LICENSE = "MIT"
11LIC_FILES_CHKSUM = "file://COPYING;md5=fd36a36514d73885d04105f000da9813"
12
13DEPENDS += "ncurses"
14
15SRC_URI += "git://code.blicky.net/yorhel/ncdu.git;protocol=https;branch=master;tag=v${PV}"
16SRCREV = "7a1437389691c4adf1999afce63850c808602f08"
17
18inherit autotools pkgconfig
19
20PACKAGECONFIG ?= "largefile ncursesw year2038"
21
22PACKAGECONFIG[largefile] = "--enable-largefile,--disable-largefile"
23PACKAGECONFIG[ncurses] = "--with-ncurses,--without-ncurses"
24PACKAGECONFIG[ncursesw] = "--with-ncursesw,--without-ncursesw"
25PACKAGECONFIG[year2038] = "--enable-year2038,--disable-year2038"