Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "GNU cpio is a program to manage archives of files" |
| 2 | DESCRIPTION = "GNU cpio is a tool for creating and extracting archives, or copying files from one place to \ |
| 3 | another. It handles a number of cpio formats as well as reading and writing tar files." |
| 4 | HOMEPAGE = "http://www.gnu.org/software/cpio/" |
| 5 | SECTION = "base" |
| 6 | |
| 7 | DEPENDS = "texinfo-native" |
| 8 | |
| 9 | SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \ |
| 10 | file://statdef.patch \ |
| 11 | " |
| 12 | |
| 13 | inherit autotools gettext texinfo |
| 14 | |
| 15 | S = "${WORKDIR}/cpio-${PV}" |
| 16 | |
| 17 | EXTRA_OECONF += "DEFAULT_RMT_DIR=${base_sbindir}" |
| 18 | |
| 19 | do_install () { |
| 20 | autotools_do_install |
| 21 | install -d ${D}${base_bindir}/ |
| 22 | mv "${D}${bindir}/cpio" "${D}${base_bindir}/cpio" |
| 23 | rmdir ${D}${bindir}/ |
| 24 | } |
| 25 | |
| 26 | PACKAGES =+ "${PN}-rmt" |
| 27 | |
| 28 | FILES_${PN}-rmt = "${base_sbindir}/rmt*" |
| 29 | |
| 30 | inherit update-alternatives |
| 31 | |
| 32 | ALTERNATIVE_PRIORITY = "100" |
| 33 | |
| 34 | ALTERNATIVE_${PN} = "cpio" |
| 35 | ALTERNATIVE_${PN}-rmt = "rmt" |
| 36 | |
| 37 | ALTERNATIVE_LINK_NAME[cpio] = "${base_bindir}/cpio" |
| 38 | |
| 39 | ALTERNATIVE_PRIORITY[rmt] = "50" |
| 40 | ALTERNATIVE_LINK_NAME[rmt] = "${base_sbindir}/rmt" |