diff options
Diffstat (limited to 'meta-oe/recipes-support/tree/tree_2.1.1.bb')
| -rw-r--r-- | meta-oe/recipes-support/tree/tree_2.1.1.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/tree/tree_2.1.1.bb b/meta-oe/recipes-support/tree/tree_2.1.1.bb new file mode 100644 index 0000000000..0b61149609 --- /dev/null +++ b/meta-oe/recipes-support/tree/tree_2.1.1.bb | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | SUMMARY = "A recursive directory listing command" | ||
| 2 | HOMEPAGE = "http://mama.indstate.edu/users/ice/tree/" | ||
| 3 | SECTION = "console/utils" | ||
| 4 | LICENSE = "GPL-2.0-only" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=393a5ca445f6965873eca0259a17f833" | ||
| 6 | |||
| 7 | SRC_URI = "http://mama.indstate.edu/users/ice/tree/src/${BP}.tgz" | ||
| 8 | SRC_URI[sha256sum] = "d3c3d55f403af7c76556546325aa1eca90b918cbaaf6d3ab60a49d8367ab90d5" | ||
| 9 | |||
| 10 | # tree's default CFLAGS for Linux | ||
| 11 | CFLAGS += "-Wall -DLINUX -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64" | ||
| 12 | |||
| 13 | EXTRA_OEMAKE = "CC='${CC}' CFLAGS='${CFLAGS}' LDFLAGS='${LDFLAGS}'" | ||
| 14 | |||
| 15 | do_configure[noexec] = "1" | ||
| 16 | |||
| 17 | do_install() { | ||
| 18 | install -d ${D}${bindir} | ||
| 19 | install -m 0755 ${S}/${BPN} ${D}${bindir}/ | ||
| 20 | } | ||
