diff options
author | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
commit | b2f192faabe412adce79534e22efe9fb69ee40e2 (patch) | |
tree | 7076c49d4286f8a1733650bd8fbc7161af200d57 /meta-extras/packages/mc | |
parent | 2cf0eadf9f730027833af802d7e6c90b44248f80 (diff) | |
download | poky-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz |
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta-extras/packages/mc')
-rw-r--r-- | meta-extras/packages/mc/mc_4.6.0.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-extras/packages/mc/mc_4.6.0.bb b/meta-extras/packages/mc/mc_4.6.0.bb new file mode 100644 index 0000000000..6636c6747d --- /dev/null +++ b/meta-extras/packages/mc/mc_4.6.0.bb | |||
@@ -0,0 +1,32 @@ | |||
1 | DESCRIPTION = "GNU Midnight Commander is a file \ | ||
2 | manager for free operating systems." | ||
3 | HOMEPAGE = "http://www.ibiblio.org/mc/" | ||
4 | LICENSE = "GPLv2" | ||
5 | SECTION = "console/utils" | ||
6 | PRIORITY = "optional" | ||
7 | DEPENDS = "ncurses glib-2.0" | ||
8 | RDEPENDS = "ncurses-terminfo" | ||
9 | |||
10 | SRC_URI = "http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/mc-${PV}.tar.gz" | ||
11 | |||
12 | inherit autotools | ||
13 | |||
14 | EXTRA_OECONF = "--disable-glibtest --without-x --without-samba \ | ||
15 | --without-nfs --without-gpm-mouse" | ||
16 | |||
17 | do_configure() { | ||
18 | gnu-configize | ||
19 | oe_runconf | ||
20 | } | ||
21 | |||
22 | do_install() { | ||
23 | cd src | ||
24 | oe_runmake 'DESTDIR=${D}' install | ||
25 | cd ../syntax | ||
26 | oe_runmake 'DESTDIR=${D}' install | ||
27 | cd ../po | ||
28 | oe_runmake 'DESTDIR=${D}' install | ||
29 | cd ../vfs | ||
30 | oe_runmake 'DESTDIR=${D}' install | ||
31 | cd .. | ||
32 | } | ||