diff options
author | Richard Purdie <richard@openedhand.com> | 2006-05-26 13:47:41 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-05-26 13:47:41 +0000 |
commit | 2feda9dba79ada0b1de3306a3ac6e70d2068854d (patch) | |
tree | 0d1cc7e6a7f2c9e041e1327c51ba4bb0a820b65d /openembedded-extras | |
parent | 3108df8b95171ef245eff958d58b6cc354ed107c (diff) | |
download | openembedded-core-2feda9dba79ada0b1de3306a3ac6e70d2068854d.tar.gz openembedded-core-2feda9dba79ada0b1de3306a3ac6e70d2068854d.tar.bz2 openembedded-core-2feda9dba79ada0b1de3306a3ac6e70d2068854d.tar.xz openembedded-core-2feda9dba79ada0b1de3306a3ac6e70d2068854d.zip |
Add mc to openembedded-extras
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@431 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded-extras')
-rw-r--r-- | openembedded-extras/packages/mc/mc_4.6.0.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/openembedded-extras/packages/mc/mc_4.6.0.bb b/openembedded-extras/packages/mc/mc_4.6.0.bb new file mode 100644 index 000000000..6636c6747 --- /dev/null +++ b/openembedded-extras/packages/mc/mc_4.6.0.bb @@ -0,0 +1,32 @@ +DESCRIPTION = "GNU Midnight Commander is a file \ +manager for free operating systems." +HOMEPAGE = "http://www.ibiblio.org/mc/" +LICENSE = "GPLv2" +SECTION = "console/utils" +PRIORITY = "optional" +DEPENDS = "ncurses glib-2.0" +RDEPENDS = "ncurses-terminfo" + +SRC_URI = "http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/mc-${PV}.tar.gz" + +inherit autotools + +EXTRA_OECONF = "--disable-glibtest --without-x --without-samba \ +--without-nfs --without-gpm-mouse" + +do_configure() { + gnu-configize + oe_runconf +} + +do_install() { + cd src + oe_runmake 'DESTDIR=${D}' install + cd ../syntax + oe_runmake 'DESTDIR=${D}' install + cd ../po + oe_runmake 'DESTDIR=${D}' install + cd ../vfs + oe_runmake 'DESTDIR=${D}' install + cd .. +} |