diff options
Diffstat (limited to 'meta/recipes-extended/less/less_443.bb')
-rw-r--r-- | meta/recipes-extended/less/less_443.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-extended/less/less_443.bb b/meta/recipes-extended/less/less_443.bb new file mode 100644 index 0000000000..0928ad4fe2 --- /dev/null +++ b/meta/recipes-extended/less/less_443.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | SUMMARY = "Text file viewer similar to more" | ||
2 | DESCRIPTION = "Less is a program similar to more, i.e. a terminal \ | ||
3 | based program for viewing text files and the output from other \ | ||
4 | programs. Less offers many features beyond those that more does." | ||
5 | HOMEPAGE = "http://www.greenwoodsoftware.com/" | ||
6 | SECTION = "console/utils" | ||
7 | |||
8 | # (GPLv2+ (<< 418), GPLv3+ (>= 418)) | less | ||
9 | # less is a 2-clause BSD-like permissive license | ||
10 | LICENSE = "GPLv3+ | less" | ||
11 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | ||
12 | file://LICENSE;md5=1237c0f825bb36122b0b2b486ffbe6be" | ||
13 | DEPENDS = "ncurses" | ||
14 | PR = "r0" | ||
15 | |||
16 | SRC_URI = "http://www.greenwoodsoftware.com/${BPN}/${BPN}-${PV}.tar.gz" | ||
17 | |||
18 | SRC_URI[md5sum] = "47db098fb3cdaf847b3c4be05ee954fc" | ||
19 | SRC_URI[sha256sum] = "a4c3e8af81fd0944941ee7c74eecc7759422a227df52335e899e69de5eae30ca" | ||
20 | |||
21 | |||
22 | inherit autotools update-alternatives | ||
23 | |||
24 | do_install () { | ||
25 | oe_runmake 'bindir=${D}${bindir}' 'mandir=${D}${mandir}' install | ||
26 | mv ${D}${bindir}/less ${D}${bindir}/less.${PN} | ||
27 | } | ||
28 | |||
29 | ALTERNATIVE_NAME = "less" | ||
30 | ALTERNATIVE_PATH = "less.${PN}" | ||
31 | ALTERNATIVE_PRIORITY = "100" | ||