Merge oe-devel@oe-devel.bkbits.net:packages
[openembedded.git] / mc / mc_4.6.0.oe
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
9 SRC_URI = "http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/mc-${PV}.tar.gz"
10
11 inherit autotools
12
13 EXTRA_OECONF = "--disable-glibtest --without-x --without-samba \
14 --without-nfs --without-gpm-mouse"
15
16 do_configure() {
17         gnu-configize
18         oe_runconf
19 }
20
21 do_install() {
22         cd src
23         oe_runmake 'DESTDIR=${D}' install
24         cd ../syntax
25         oe_runmake 'DESTDIR=${D}' install
26         cd ../po
27         oe_runmake 'DESTDIR=${D}' install
28         cd ../vfs
29         oe_runmake 'DESTDIR=${D}' install
30         cd ..
31 }