blob: 47af36eebd9b78e327e466105d2e197469fe0ccd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DESCRIPTION = "Diffutils contains the GNU diff, diff3, \
sdiff, and cmp utilities. These programs are usually \
used for creating patch files."
SECTION = "base"
LICENSE = "GPL"
PR = "r1"
SRC_URI = "${GNU_MIRROR}/diffutils/diffutils-${PV}.tar.gz"
inherit autotools
PACKAGES += "diff"
FILES_diff = "${bindir}/diff"
RSUGGESTS_diff = "${PN}"
FILES_${PN} = "${bindir}/cmp \
${bindir}/diff3 \
${bindir}/sdiff"
RRECOMMENDS_${PN} = "diff"
|