Another pass of .oe cleanups.
[vuplus_openembedded] / mc / mc_4.6.0.oe
1 DESCRIPTION = "GNU Midnight Commander is a file \
2 manager for free operating systems."
3 SECTION = "base"
4 PRIORITY = "optional"
5 RDEPENDS = "libc6 libncurses5 glib-2.0"
6 DEPENDS = "virtual/libc ncurses glib-2.0"
7
8 SRC_URI = "http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/mc-${PV}.tar.gz"
9
10 inherit autotools
11
12 EXTRA_OECONF = "--disable-glibtest --without-x --without-samba \
13 --without-nfs --without-gpm-mouse"
14
15 do_configure() {
16         oe_runconf
17 }
18
19 do_install() {
20         cd src
21         oe_runmake 'DESTDIR=${D}' install
22         cd ../syntax
23         oe_runmake 'DESTDIR=${D}' install
24         cd ../po
25         oe_runmake 'DESTDIR=${D}' install
26         cd ../vfs
27         oe_runmake 'DESTDIR=${D}' install
28         cd ..
29 }