summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/diffstat/diffstat_1.57.bb
diff options
context:
space:
mode:
authorAdrian Dudau <adrian.dudau@enea.com>2013-12-12 13:38:32 +0100
committerAdrian Dudau <adrian.dudau@enea.com>2013-12-12 13:50:20 +0100
commite2e6f6fe07049f33cb6348780fa975162752e421 (patch)
treeb1813295411235d1297a0ed642b1346b24fdfb12 /meta/recipes-devtools/diffstat/diffstat_1.57.bb
downloadpoky-e2e6f6fe07049f33cb6348780fa975162752e421.tar.gz
initial commit of Enea Linux 3.1
Migrated from the internal git server on the dora-enea branch Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'meta/recipes-devtools/diffstat/diffstat_1.57.bb')
-rw-r--r--meta/recipes-devtools/diffstat/diffstat_1.57.bb26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/recipes-devtools/diffstat/diffstat_1.57.bb b/meta/recipes-devtools/diffstat/diffstat_1.57.bb
new file mode 100644
index 0000000000..c25005f140
--- /dev/null
+++ b/meta/recipes-devtools/diffstat/diffstat_1.57.bb
@@ -0,0 +1,26 @@
1SUMMARY = "Tool to produce a statistics based on a diff"
2DESCRIPTION = "diffstat reads the output of diff and displays a histogram of \
3the insertions, deletions, and modifications per-file. It is useful for \
4reviewing large, complex patch files."
5HOMEPAGE = "http://invisible-island.net/diffstat/"
6SECTION = "devel"
7LICENSE = "MIT"
8LIC_FILES_CHKSUM = "file://install-sh;endline=42;md5=b3549726c1022bee09c174c72a0ca4a5"
9
10SRC_URI = "ftp://invisible-island.net/diffstat/diffstat-${PV}.tgz \
11 file://dirfix.patch \
12 file://aclocal.patch"
13
14SRC_URI[md5sum] = "a70ae35e479ab91da7eb6023a4e9240a"
15SRC_URI[sha256sum] = "cb9845839d695f178d6b5458b08d3e04773e400f35c0c062c4c0102220fba1e6"
16
17S = "${WORKDIR}/diffstat-${PV}"
18
19inherit autotools gettext
20
21do_configure () {
22 if [ ! -e ${S}/acinclude.m4 ]; then
23 mv ${S}/aclocal.m4 ${S}/acinclude.m4
24 fi
25 autotools_do_configure
26}