diffstat_1.54.bb 788 B

1234567891011121314151617181920212223242526
  1. DESCRIPTION = "diffstat reads the output of diff and displays a histogram of \
  2. the insertions, deletions, and modifications per-file. It is useful for \
  3. reviewing large, complex patch files."
  4. HOMEPAGE = "http://invisible-island.net/diffstat/"
  5. PRIORITY = "optional"
  6. SECTION = "devel"
  7. DEPENDS = "gettext"
  8. LICENSE = "MIT"
  9. LIC_FILES_CHKSUM = "file://install-sh;endline=42;md5=b3549726c1022bee09c174c72a0ca4a5"
  10. PR = "r0"
  11. SRC_URI = "ftp://invisible-island.net/diffstat/diffstat-${PV}.tgz"
  12. SRC_URI[md5sum] = "af08bef2eb37050ceb0c4fddedb2ee36"
  13. SRC_URI[sha256sum] = "d8e67660ec85be597f8548ecdd088926639dac34ec7184aaf9d09c1e6ecb83e5"
  14. S = "${WORKDIR}/diffstat-${PV}"
  15. inherit autotools
  16. do_configure () {
  17. if [ ! -e acinclude.m4 ]; then
  18. mv aclocal.m4 acinclude.m4
  19. fi
  20. autotools_do_configure
  21. }