mirror of
https://git.yoctoproject.org/poky
synced 2026-07-26 19:17:07 +00:00
905642985d
It contains helper programs that are needed to make mc do the right actions for the various file formats it understands. The helpers are perl, python and shell scripts, split them out so the core mc does not try to pull in perl and python, it will still run without these helpers. [YOCTO #4432] (From OE-Core rev: 6d0205576ef1e8a62c469b883dc0c962440469a7) (From OE-Core rev: 0e4b2969283df4124d6edd58bbe7149221fb9362) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
48 lines
2.0 KiB
BlitzBasic
48 lines
2.0 KiB
BlitzBasic
DESCRIPTION = "Midnight Commander is an ncurses based file manager."
|
|
HOMEPAGE = "http://www.midnight-commander.org/"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
|
|
SECTION = "console/utils"
|
|
DEPENDS = "ncurses glib-2.0"
|
|
RDEPENDS_${PN} = "ncurses-terminfo"
|
|
|
|
PR = "r3"
|
|
|
|
SRC_URI = "http://www.midnight-commander.org/downloads/${BPN}-${PV}.tar.bz2"
|
|
|
|
SRC_URI[md5sum] = "bdae966244496cd4f6d282d80c9cf3c6"
|
|
SRC_URI[sha256sum] = "a68338862bb30017eb65ed569a58e80ab66ae8cef11c886440c9e9f4d1efc6ab"
|
|
|
|
inherit autotools gettext
|
|
|
|
EXTRA_OECONF = "--with-screen=ncurses --without-gpm-mouse --without-x --without-samba"
|
|
|
|
FILES_${PN}-dbg += "${libexecdir}/mc/.debug/"
|
|
|
|
do_install_append () {
|
|
sed -i -e '1s,#!.*perl,#!${bindir}/env perl,' ${D}${libexecdir}/mc/extfs.d/*
|
|
sed -i -e '1s,#!.*python,#!${bindir}/env python,' ${D}${libexecdir}/mc/extfs.d/*
|
|
}
|
|
|
|
PACKAGES =+ "${BPN}-helpers-perl ${BPN}-helpers-python ${BPN}-helpers ${BPN}-fish"
|
|
|
|
DESCRIPTION_${BPN}-helpers-perl = "Midnight Commander perl based helper scripts"
|
|
FILES_${BPN}-helpers-perl = "${libexecdir}/mc/extfs.d/a+ ${libexecdir}/mc/extfs.d/apt+ \
|
|
${libexecdir}/mc/extfs.d/deb ${libexecdir}/mc/extfs.d/deba \
|
|
${libexecdir}/mc/extfs.d/debd ${libexecdir}/mc/extfs.d/dpkg+ \
|
|
${libexecdir}/mc/extfs.d/mailfs ${libexecdir}/mc/extfs.d/patchfs \
|
|
${libexecdir}/mc/extfs.d/rpms+ ${libexecdir}/mc/extfs.d/ulib \
|
|
${libexecdir}/mc/extfs.d/uzip"
|
|
RDEPENDS_${BPN}-helpers-perl = "perl"
|
|
|
|
DESCRIPTION_${BPN}-helpers-python = "Midnight Commander python based helper scripts"
|
|
FILES_${BPN}-helpers-python = "${libexecdir}/mc/extfs.d/s3+ ${libexecdir}/mc/extfs.d/uc1541"
|
|
RDEPENDS_${BPN}-helpers-python = "python"
|
|
|
|
DESCRIPTION_${BPN}-helpers = "Midnight Commander shell helper scripts"
|
|
FILES_${BPN}-helpers = "${libexecdir}/mc/extfs.d/* ${libexecdir}/mc/ext.d/*"
|
|
|
|
DESCRIPTION_${BPN}-fish = "Midnight Commander Fish scripts"
|
|
FILES_${BPN}-fish = "${libexecdir}/mc/fish"
|
|
|