diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/packages/less/less_382.bb | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/meta/packages/less/less_382.bb b/meta/packages/less/less_382.bb index b489722edb..f336a59ad6 100644 --- a/meta/packages/less/less_382.bb +++ b/meta/packages/less/less_382.bb | |||
@@ -1,16 +1,22 @@ | |||
1 | SECTION = "console/utils" | ||
2 | DEPENDS = "ncurses" | ||
3 | DESCRIPTION = "Less is a program similar to more, i.e. a terminal \ | 1 | DESCRIPTION = "Less is a program similar to more, i.e. a terminal \ |
4 | based program for viewing text files and the output from other \ | 2 | based program for viewing text files and the output from other \ |
5 | programs. Less offers many features beyond those that more does." | 3 | programs. Less offers many features beyond those that more does." |
6 | HOMEPAGE = "http://www.greenwoodsoftware.com/" | 4 | HOMEPAGE = "http://www.greenwoodsoftware.com/" |
5 | SECTION = "console/utils" | ||
7 | LICENSE = "BSD" | 6 | LICENSE = "BSD" |
7 | DEPENDS = "ncurses" | ||
8 | PR = "r1" | ||
8 | 9 | ||
9 | SRC_URI = "${GNU_MIRROR}/less/less-${PV}.tar.gz \ | 10 | SRC_URI = "${GNU_MIRROR}/less/less-${PV}.tar.gz \ |
10 | file://configure.patch;patch=1" | 11 | file://configure.patch;patch=1" |
11 | 12 | ||
12 | inherit autotools | 13 | inherit autotools update-alternatives |
13 | 14 | ||
14 | do_install () { | 15 | do_install () { |
15 | oe_runmake 'bindir=${D}${bindir}' 'mandir=${D}${mandir}' install | 16 | oe_runmake 'bindir=${D}${bindir}' 'mandir=${D}${mandir}' install |
17 | mv ${D}${bindir}/less ${D}${bindir}/less.${PN} | ||
16 | } | 18 | } |
19 | |||
20 | ALTERNATIVE_NAME = "less" | ||
21 | ALTERNATIVE_PATH = "less.${PN}" | ||
22 | ALTERNATIVE_PRIORITY = "100" | ||