diff options
Diffstat (limited to 'meta/recipes-extended/mc/mc_4.8.13.bb')
-rw-r--r-- | meta/recipes-extended/mc/mc_4.8.13.bb | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-extended/mc/mc_4.8.13.bb b/meta/recipes-extended/mc/mc_4.8.13.bb new file mode 100644 index 0000000000..ef5b1a23e2 --- /dev/null +++ b/meta/recipes-extended/mc/mc_4.8.13.bb | |||
@@ -0,0 +1,53 @@ | |||
1 | SUMMARY = "Midnight Commander is an ncurses based file manager" | ||
2 | HOMEPAGE = "http://www.midnight-commander.org/" | ||
3 | LICENSE = "GPLv3" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=270bbafe360e73f9840bd7981621f9c2" | ||
5 | SECTION = "console/utils" | ||
6 | DEPENDS = "ncurses glib-2.0" | ||
7 | RDEPENDS_${PN} = "ncurses-terminfo" | ||
8 | |||
9 | SRC_URI = "http://www.midnight-commander.org/downloads/${BPN}-${PV}.tar.bz2 \ | ||
10 | file://mc-CTRL.patch \ | ||
11 | " | ||
12 | |||
13 | SRC_URI[md5sum] = "12a521a50da6a86852177591b9623d5e" | ||
14 | SRC_URI[sha256sum] = "22e1b809edba957eb9a392138bf87fea3877f7ca0b7463b7cc2eb94afa6f3e49" | ||
15 | |||
16 | inherit autotools gettext pkgconfig | ||
17 | |||
18 | # | ||
19 | # Both Samba (smb) and sftp require package delivered from meta-openembedded | ||
20 | # | ||
21 | PACKAGECONFIG ??= "" | ||
22 | PACKAGECONFIG[smb] = "--enable-vfs-smb,--disable-vfs-smb,samba," | ||
23 | PACKAGECONFIG[sftp] = "--enable-vfs-sftp,--disable-vfs-sftp,libssh2," | ||
24 | |||
25 | EXTRA_OECONF = "--with-screen=ncurses --without-gpm-mouse --without-x" | ||
26 | |||
27 | FILES_${PN}-dbg += "${libexecdir}/mc/.debug/" | ||
28 | |||
29 | do_install_append () { | ||
30 | sed -i -e '1s,#!.*perl,#!${bindir}/env perl,' ${D}${libexecdir}/mc/extfs.d/* | ||
31 | sed -i -e '1s,#!.*python,#!${bindir}/env python,' ${D}${libexecdir}/mc/extfs.d/* | ||
32 | } | ||
33 | |||
34 | PACKAGES =+ "${BPN}-helpers-perl ${BPN}-helpers-python ${BPN}-helpers ${BPN}-fish" | ||
35 | |||
36 | SUMMARY_${BPN}-helpers-perl = "Midnight Commander Perl-based helper scripts" | ||
37 | FILES_${BPN}-helpers-perl = "${libexecdir}/mc/extfs.d/a+ ${libexecdir}/mc/extfs.d/apt+ \ | ||
38 | ${libexecdir}/mc/extfs.d/deb ${libexecdir}/mc/extfs.d/deba \ | ||
39 | ${libexecdir}/mc/extfs.d/debd ${libexecdir}/mc/extfs.d/dpkg+ \ | ||
40 | ${libexecdir}/mc/extfs.d/mailfs ${libexecdir}/mc/extfs.d/patchfs \ | ||
41 | ${libexecdir}/mc/extfs.d/rpms+ ${libexecdir}/mc/extfs.d/ulib \ | ||
42 | ${libexecdir}/mc/extfs.d/uzip" | ||
43 | RDEPENDS_${BPN}-helpers-perl = "perl" | ||
44 | |||
45 | SUMMARY_${BPN}-helpers-python = "Midnight Commander Python-based helper scripts" | ||
46 | FILES_${BPN}-helpers-python = "${libexecdir}/mc/extfs.d/s3+ ${libexecdir}/mc/extfs.d/uc1541" | ||
47 | RDEPENDS_${BPN}-helpers-python = "python" | ||
48 | |||
49 | SUMMARY_${BPN}-helpers = "Midnight Commander shell helper scripts" | ||
50 | FILES_${BPN}-helpers = "${libexecdir}/mc/extfs.d/* ${libexecdir}/mc/ext.d/*" | ||
51 | |||
52 | SUMMARY_${BPN}-fish = "Midnight Commander Fish scripts" | ||
53 | FILES_${BPN}-fish = "${libexecdir}/mc/fish" | ||